Auto merge of #6828 - Ms2ger:intermittents, r=SimonSapin

Try to reduce intermittent failures.



<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6828)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-07-29 05:32:52 -06:00
commit d707792cce
3 changed files with 4 additions and 4 deletions

View file

@ -101,11 +101,11 @@ pub fn load_from_memory(buffer: &[u8]) -> Option<Image> {
}) })
} }
stb_image2::LoadResult::ImageF32(_image) => { stb_image2::LoadResult::ImageF32(_image) => {
error!("HDR images not implemented"); debug!("HDR images not implemented");
None None
} }
stb_image2::LoadResult::Error(e) => { stb_image2::LoadResult::Error(e) => {
error!("stb_image failed: {}", e); debug!("stb_image failed: {}", e);
None None
} }
} }

View file

@ -2,4 +2,4 @@
type: reftest type: reftest
reftype: == reftype: ==
refurl: /2dcontext/building-paths/canvas_complexshapes_arcto_001-ref.htm refurl: /2dcontext/building-paths/canvas_complexshapes_arcto_001-ref.htm
expected: FAIL disabled: https://github.com/servo/servo/issues/6780

View file

@ -2,4 +2,4 @@
type: reftest type: reftest
reftype: == reftype: ==
refurl: /2dcontext/building-paths/canvas_complexshapes_beziercurveto_001-ref.htm refurl: /2dcontext/building-paths/canvas_complexshapes_beziercurveto_001-ref.htm
expected: FAIL disabled: https://github.com/servo/servo/issues/6748