diff options
| author | Ralf Jung <post@ralfj.de> | 2019-04-09 22:08:57 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2019-04-14 10:01:32 +0200 |
| commit | 3a39b431e87807bea03d17df98ddb71f82bfc6d5 (patch) | |
| tree | 7af0061e1690faaf0c91c87da06ea79576dbe4db /src/test/ui/issues | |
| parent | 6cd7c8b04a83ed1f2900dbcbeaae8f5e91a9cb35 (diff) | |
| download | rust-3a39b431e87807bea03d17df98ddb71f82bfc6d5.tar.gz rust-3a39b431e87807bea03d17df98ddb71f82bfc6d5.zip | |
normalize away spurious error
Diffstat (limited to 'src/test/ui/issues')
| -rw-r--r-- | src/test/ui/issues/issue-15919.rs | 4 | ||||
| -rw-r--r-- | src/test/ui/issues/issue-17913.rs | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-15919.rs b/src/test/ui/issues/issue-15919.rs index 19ecf2f657e..a7ac4802a12 100644 --- a/src/test/ui/issues/issue-15919.rs +++ b/src/test/ui/issues/issue-15919.rs @@ -1,6 +1,10 @@ // error-pattern: too big for the current architecture // normalize-stderr-test "\[usize; \d+\]" -> "[usize; N]" +// FIXME https://github.com/rust-lang/rust/issues/59774 +// normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> "" +// normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> "" + #[cfg(target_pointer_width = "32")] fn main() { let x = [0usize; 0xffff_ffff]; diff --git a/src/test/ui/issues/issue-17913.rs b/src/test/ui/issues/issue-17913.rs index b0c4ef54b16..48d8f407aa1 100644 --- a/src/test/ui/issues/issue-17913.rs +++ b/src/test/ui/issues/issue-17913.rs @@ -1,6 +1,10 @@ // normalize-stderr-test "\[&usize; \d+\]" -> "[&usize; N]" // error-pattern: too big for the current architecture +// FIXME https://github.com/rust-lang/rust/issues/59774 +// normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> "" +// normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> "" + #![feature(box_syntax)] #[cfg(target_pointer_width = "64")] |
