diff options
| author | Patrick Walton <[email protected]> | 2011-04-21 17:35:25 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-04-21 17:35:25 -0700 |
| commit | 11c359962ecabc4082e48eacddc823e3e7a377e7 (patch) | |
| tree | 90b6e11e182e740d0821fa5bdf857842c45adb62 | |
| parent | rustc: Add a shallow type equality function, not used yet (diff) | |
| download | rust-11c359962ecabc4082e48eacddc823e3e7a377e7.tar.xz rust-11c359962ecabc4082e48eacddc823e3e7a377e7.zip | |
test: XFAIL lib-box on stage0. Upstream LLVM doesn't have the library reading patch yet.
| -rw-r--r-- | src/test/run-pass/drop-parametric-closure-with-bound-box.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/lib-box.rs | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/test/run-pass/drop-parametric-closure-with-bound-box.rs b/src/test/run-pass/drop-parametric-closure-with-bound-box.rs index dcdc4b03..442f8aa0 100644 --- a/src/test/run-pass/drop-parametric-closure-with-bound-box.rs +++ b/src/test/run-pass/drop-parametric-closure-with-bound-box.rs @@ -1,3 +1,5 @@ +// xfail-stage0 + fn f[T](@int i, &T t) {} fn main() { diff --git a/src/test/run-pass/lib-box.rs b/src/test/run-pass/lib-box.rs index 10f5e727..6e0f35bc 100644 --- a/src/test/run-pass/lib-box.rs +++ b/src/test/run-pass/lib-box.rs @@ -1,3 +1,5 @@ +// xfail-stage0 + use std; import std.Box; |