Skip to content

Commit 8861232

Browse files
committed
some more tests need normalization
1 parent 3a35b7e commit 8861232

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

src/test/ui/huge-array-simple.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
// error-pattern: too big for the current architecture
22

33
// normalize-stderr-test "; \d+]" -> "; N]"
4+
5+
// FIXME https://github.com/rust-lang/rust/issues/59774
6+
// normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
7+
// normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
48
#![allow(exceeding_bitshifts)]
59

610
#[cfg(target_pointer_width = "64")]

src/test/ui/huge-struct.rs

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
// normalize-stderr-test "S1M" -> "SXX"
33
// error-pattern: too big for the current
44

5+
// FIXME https://github.com/rust-lang/rust/issues/59774
6+
// normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
7+
// normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
8+
59
struct S32<T> {
610
v0: T,
711
v1: T,

src/test/ui/issues/issue-56762.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
// only-x86_64
2+
3+
// FIXME https://github.com/rust-lang/rust/issues/59774
4+
// normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
5+
// normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
26
const HUGE_SIZE: usize = !0usize / 8;
37

48

0 commit comments

Comments
 (0)