Skip to content

Commit

Permalink
Mark as expected failure a reftest that uses 'direction'.
Browse files Browse the repository at this point in the history
That property is behind the new --experimental flag.
  • Loading branch information
SimonSapin committed Jul 18, 2014
1 parent bc2aa84 commit 94b630e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/test/harness/reftest/reftest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ fn parse_lists(file: &String, servo_args: &[String]) -> Vec<TestDescAndFn> {
};

for line in contents.as_slice().lines() {
// ignore comments
if line.starts_with("#") {
// ignore comments or empty lines
if line.starts_with("#") || line.is_empty() {
continue;
}

Expand Down
5 changes: 4 additions & 1 deletion src/test/ref/basic.list
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@
== pseudo_element_a.html pseudo_element_b.html
== linebreak_simple_a.html linebreak_simple_b.html
== linebreak_inline_span_a.html linebreak_inline_span_b.html
== overconstrained_block.html overconstrained_block_ref.html

# Should be == with expected failure. See #2797
!= overconstrained_block.html overconstrained_block_ref.html

== overflow_auto.html overflow_simple_b.html
== overflow_scroll.html overflow_simple_b.html
== overflow_simple_a.html overflow_simple_b.html
Expand Down

0 comments on commit 94b630e

Please sign in to comment.