diff options
| author | Florian Hahn <flo@fhahn.com> | 2014-02-07 20:08:32 +0100 |
|---|---|---|
| committer | Florian Hahn <flo@fhahn.com> | 2014-02-11 18:23:20 +0100 |
| commit | f62460c1f54a693cd046513ef6776bb3551c929d (patch) | |
| tree | 08eb9d35f3e6365256fb4d3fa1404b9c1702750e /src/etc/extract-tests.py | |
| parent | 5b5ebf230b02e430e087b3f2edaaf1cfe5567b34 (diff) | |
| download | rust-f62460c1f54a693cd046513ef6776bb3551c929d.tar.gz rust-f62460c1f54a693cd046513ef6776bb3551c929d.zip | |
Change `xfail` directives in compiletests to `ignore`, closes #11363
Diffstat (limited to 'src/etc/extract-tests.py')
| -rw-r--r-- | src/etc/extract-tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/extract-tests.py b/src/etc/extract-tests.py index 06cdf66a918..13eadc79880 100644 --- a/src/etc/extract-tests.py +++ b/src/etc/extract-tests.py @@ -99,7 +99,7 @@ def extract_code_fragments(dest_dir, lines): block.appendleft(OUTPUT_BLOCK_HEADER) if "ignore" in tags: - block.appendleft("//xfail-test\n") + block.appendleft("//ignore-test\n") elif "should_fail" in tags: block.appendleft("//should-fail\n") |
