diff options
| author | Brian Anderson <[email protected]> | 2011-05-10 18:42:48 -0400 |
|---|---|---|
| committer | Brian Anderson <[email protected]> | 2011-05-10 19:18:38 -0400 |
| commit | 92471efff4b92ad4185fd3138e1530973a2a58cb (patch) | |
| tree | 5aa2a9e62d9f94050325da6b2f20ca3d0e04e104 /src/test | |
| parent | Add --time-llvm-passes. (diff) | |
| download | rust-92471efff4b92ad4185fd3138e1530973a2a58cb.tar.xz rust-92471efff4b92ad4185fd3138e1530973a2a58cb.zip | |
Un-XFAIL compile-fail export tests for stage0
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/compile-fail/export-fully-qualified.rs | 1 | ||||
| -rw-r--r-- | src/test/compile-fail/export-import.rs | 1 | ||||
| -rw-r--r-- | src/test/compile-fail/export-no-tag-variants.rs | 1 | ||||
| -rw-r--r-- | src/test/compile-fail/export-tag-variant.rs | 1 | ||||
| -rw-r--r-- | src/test/compile-fail/export.rs | 1 | ||||
| -rw-r--r-- | src/test/compile-fail/export2.rs | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/src/test/compile-fail/export-fully-qualified.rs b/src/test/compile-fail/export-fully-qualified.rs index 28225754..1f62b0a8 100644 --- a/src/test/compile-fail/export-fully-qualified.rs +++ b/src/test/compile-fail/export-fully-qualified.rs @@ -1,5 +1,4 @@ // xfail-boot -// xfail-stage0 // error-pattern: unresolved name // In this test baz isn't resolved when called as foo.baz even though diff --git a/src/test/compile-fail/export-import.rs b/src/test/compile-fail/export-import.rs index 6cc053d1..cfa27af3 100644 --- a/src/test/compile-fail/export-import.rs +++ b/src/test/compile-fail/export-import.rs @@ -1,5 +1,4 @@ // xfail-boot -// xfail-stage0 // error-pattern: unresolved name import m.unexported; diff --git a/src/test/compile-fail/export-no-tag-variants.rs b/src/test/compile-fail/export-no-tag-variants.rs index b812859c..69799802 100644 --- a/src/test/compile-fail/export-no-tag-variants.rs +++ b/src/test/compile-fail/export-no-tag-variants.rs @@ -1,5 +1,4 @@ // xfail-boot -// xfail-stage0 // error-pattern: unresolved name // Tag variants are not exported with their tags. This allows for a diff --git a/src/test/compile-fail/export-tag-variant.rs b/src/test/compile-fail/export-tag-variant.rs index 1de937e2..c37dac2e 100644 --- a/src/test/compile-fail/export-tag-variant.rs +++ b/src/test/compile-fail/export-tag-variant.rs @@ -1,5 +1,4 @@ // xfail-boot -// xfail-stage0 // error-pattern: unresolved name mod foo { diff --git a/src/test/compile-fail/export.rs b/src/test/compile-fail/export.rs index 8b491542..d54e515c 100644 --- a/src/test/compile-fail/export.rs +++ b/src/test/compile-fail/export.rs @@ -1,5 +1,4 @@ // xfail-boot -// xfail-stage0 // error-pattern: unresolved name mod foo { export x; diff --git a/src/test/compile-fail/export2.rs b/src/test/compile-fail/export2.rs index 435ffb90..18e84ddc 100644 --- a/src/test/compile-fail/export2.rs +++ b/src/test/compile-fail/export2.rs @@ -1,5 +1,4 @@ // xfail-boot -// xfail-stage0 // error-pattern: unresolved name mod foo { |