Skip to content

Commit a47416b

Browse files
committedDec 12, 2023
test that both size_of_val and align_of_val panic
1 parent df227f7 commit a47416b

5 files changed

+16
-6
lines changed
 

‎tests/ui/extern/extern-types-field-offset.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// run-fail
22
// check-run-results
3-
// normalize-stderr-test "panicking\.rs:\d+:\d+:" -> "panicking.rs:"
3+
// exec-env:RUST_BACKTRACE=0
4+
// normalize-stderr-test: "(core/src/panicking\.rs):[0-9]+:[0-9]+" -> "$1:$$LINE:$$COL"
45
#![feature(extern_types)]
56

67
extern "C" {
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
thread 'main' panicked at library/core/src/panicking.rs:
1+
thread 'main' panicked at library/core/src/panicking.rs:$LINE:$COL:
22
attempted to compute the size or alignment of extern type `Opaque`
33
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
44
thread caused non-unwinding panic. aborting.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
thread 'main' panicked at library/core/src/panicking.rs:
1+
thread 'main' panicked at library/core/src/panicking.rs:$LINE:$COL:
22
attempted to compute the size or alignment of extern type `A`
33
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
44
thread caused non-unwinding panic. aborting.

‎tests/ui/extern/extern-types-size_of_val.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// run-fail
22
// check-run-results
3-
// normalize-stderr-test "panicking\.rs:\d+:\d+:" -> "panicking.rs:"
3+
// exec-env:RUST_BACKTRACE=0
4+
// normalize-stderr-test: "(core/src/panicking\.rs):[0-9]+:[0-9]+" -> "$1:$$LINE:$$COL"
5+
// revisions: size align
46
#![feature(extern_types)]
57

68
use std::mem::{align_of_val, size_of_val};
@@ -13,6 +15,9 @@ fn main() {
1315
let x: &A = unsafe { &*(1usize as *const A) };
1416

1517
// These don't have a dynamic size, so this should panic.
16-
assert_eq!(size_of_val(x), 0);
17-
assert_eq!(align_of_val(x), 1);
18+
if cfg!(size) {
19+
assert_eq!(size_of_val(x), 0);
20+
} else {
21+
assert_eq!(align_of_val(x), 1);
22+
}
1823
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
thread 'main' panicked at library/core/src/panicking.rs:$LINE:$COL:
2+
attempted to compute the size or alignment of extern type `A`
3+
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
4+
thread caused non-unwinding panic. aborting.

0 commit comments

Comments
 (0)