summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2019-04-09 22:36:56 +0200
committerRalf Jung <post@ralfj.de>2019-04-14 10:01:32 +0200
commit184939fe987a9c2f9149b7931bcadf43dce97c79 (patch)
treec36a7f795b38eb8915d3e08f6c44c1eb6126b6b3
parent3a39b431e87807bea03d17df98ddb71f82bfc6d5 (diff)
downloadrust-184939fe987a9c2f9149b7931bcadf43dce97c79.tar.gz
some more tests need normalization
-rw-r--r--src/test/ui/huge-array-simple.rs4
-rw-r--r--src/test/ui/huge-struct.rs4
-rw-r--r--src/test/ui/issues/issue-56762.rs4
3 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/huge-array-simple.rs b/src/test/ui/huge-array-simple.rs
index 8b244a47232..0ff27168a7d 100644
--- a/src/test/ui/huge-array-simple.rs
+++ b/src/test/ui/huge-array-simple.rs
@@ -1,6 +1,10 @@
// error-pattern: too big for the current architecture
// normalize-stderr-test "; \d+]" -> "; 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" -> ""
#![allow(exceeding_bitshifts)]
#[cfg(target_pointer_width = "64")]
diff --git a/src/test/ui/huge-struct.rs b/src/test/ui/huge-struct.rs
index 74e43cc6472..dc7d75a6f02 100644
--- a/src/test/ui/huge-struct.rs
+++ b/src/test/ui/huge-struct.rs
@@ -2,6 +2,10 @@
// normalize-stderr-test "S1M" -> "SXX"
// error-pattern: too big for the current
+// 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" -> ""
+
struct S32<T> {
v0: T,
v1: T,
diff --git a/src/test/ui/issues/issue-56762.rs b/src/test/ui/issues/issue-56762.rs
index 97b66b2c7c9..8bb81b907c9 100644
--- a/src/test/ui/issues/issue-56762.rs
+++ b/src/test/ui/issues/issue-56762.rs
@@ -1,4 +1,8 @@
// only-x86_64
+
+// 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" -> ""
const HUGE_SIZE: usize = !0usize / 8;