about summary refs log tree commit diff
path: root/tests/run-make/extern-fn-struct-passing-abi
AgeCommit message (Collapse)AuthorLines
2024-12-17Use field init shorthand where possibleJosh Triplett-1/+1
Field init shorthand allows writing initializers like `tcx: tcx` as `tcx`. The compiler already uses it extensively. Fix the last few places where it isn't yet used.
2024-07-17rewrite extern-fn-struct-passing-abi to rmakeOneirical-6/+16
2024-05-31Run rustfmt on `tests/run-make/`.Nicholas Nethercote-2/+6
With the exception of `tests/run-make/translation/test.rs`, which has a syntax error. The expected output in `rustdoc-error-lines/rmake.rs`'s required slight tweaking. The two `reproducible-build.rs` files need `// ignore-tidy-linelength` because rustfmt produces lines longer than 100 chars, which tidy doesn't like, yuk.
2023-07-10i686-windows: pass arguments with requested alignment > 4 indirectlyErik Desjardins-1/+5
2023-07-10extern-fn-struct-passing-abi test: ensure we don't start passing struct with ↵Erik Desjardins-0/+53
natural alignment > 8 by reference
2023-03-30ignore failing cross-compiled run-make testsJoshua Nelson-0/+1
`run-make-fulldeps` is never cross-compiled, so a lot of these tests never accounted for --target. Ignore them when cross-compiling for now.
2023-03-30Move almost all run-make-fulldeps to run-makeJoshua Nelson-0/+457
They pass fine.