diff options
| author | Oneirical <manchot@videotron.ca> | 2024-07-08 14:57:07 -0400 |
|---|---|---|
| committer | Oneirical <manchot@videotron.ca> | 2024-07-17 15:33:07 -0400 |
| commit | f7d67d6b6855d0f3880668f2f2d0dabc02caef31 (patch) | |
| tree | 37ba00a0491ca748f18f9dba7dc9d81e25c87d5d /tests | |
| parent | bde91785dc4de27787ac20074f3fda70ec47c88d (diff) | |
| download | rust-f7d67d6b6855d0f3880668f2f2d0dabc02caef31.tar.gz rust-f7d67d6b6855d0f3880668f2f2d0dabc02caef31.zip | |
rewrite extern-fn-with-packed-struct to rmake
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/run-make/extern-fn-with-packed-struct/Makefile | 6 | ||||
| -rw-r--r-- | tests/run-make/extern-fn-with-packed-struct/rmake.rs | 17 |
2 files changed, 17 insertions, 6 deletions
diff --git a/tests/run-make/extern-fn-with-packed-struct/Makefile b/tests/run-make/extern-fn-with-packed-struct/Makefile deleted file mode 100644 index 3cbbf383996..00000000000 --- a/tests/run-make/extern-fn-with-packed-struct/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -# ignore-cross-compile -include ../tools.mk - -all: $(call NATIVE_STATICLIB,test) - $(RUSTC) test.rs - $(call RUN,test) || exit 1 diff --git a/tests/run-make/extern-fn-with-packed-struct/rmake.rs b/tests/run-make/extern-fn-with-packed-struct/rmake.rs new file mode 100644 index 00000000000..e6d8cecd24a --- /dev/null +++ b/tests/run-make/extern-fn-with-packed-struct/rmake.rs @@ -0,0 +1,17 @@ +// Packed structs, in C, occupy less bytes in memory, but are more +// vulnerable to alignment errors. Passing them around in a Rust-C foreign +// function interface (FFI) would cause unexpected behavior, until this was +// fixed in #16584. This test checks that a Rust program with a C library +// compiles and executes successfully, even with usage of a packed struct. +// See https://github.com/rust-lang/rust/issues/16574 + +//@ ignore-cross-compile +// Reason: the compiled binary is executed + +use run_make_support::{build_native_static_lib, run, rustc}; + +fn main() { + build_native_static_lib("test"); + rustc().input("test.rs").run(); + run("test"); +} |
