about summary refs log tree commit diff
path: root/src/test/codegen/remap_path_prefix/main.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-28/+0
2022-12-06Fix failing codegen tests on s390xUlrich Weigand-1/+1
Several codegen tests are currently failing due to making assumptions that are not valid for the s390x architecture: - catch-unwind.rs: fails due to inlining differences. Already ignored on another platform for the same reason. Solution: Ignore on s390x. - remap_path_prefix/main.rs: fails due to different alignment requirement for string constants. Solution: Do not test for the alignment requirement. - repr-transparent-aggregates-1.rs: many ABI assumptions. Already ignored on many platforms for the same reason. Solution: Ignore on s390x. - repr-transparent.rs: no vector ABI by default on s390x. Already ignored on another platform for a similar reason. Solution: Ignore on s390x. - uninit-consts.rs: hard-coded little-endian constant. Solution: Match both little- and big-endian versions. Fixes part of https://github.com/rust-lang/rust/issues/105383.
2022-07-01Amend codegen test.Camille GILLOT-1/+1
2022-05-18Properly apply path prefix remapping paths emitted into debuginfo.Michael Woerister-1/+1
2022-04-29Fix duplicate directory separator in --remap-path-prefix.Michael Woerister-1/+1
2021-07-14bless mir-opt, codegen, and remaining ui testsRalf Jung-1/+1
2021-04-03Remove redundant `ignore-tidy-linelength` annotationsSimon Jakobi-1/+1
This is step 2 towards fixing #77548. In the codegen and codegen-units test suites, the `//` comment markers were kept in order not to affect any source locations. This is because these tests cannot be automatically `--bless`ed.
2020-04-02Add hash of source files in debug infoArlo Siemsen-2/+2
* Adds either an MD5 or SHA1 hash to the debug info. * Adds new unstable option `-Z src-hash-algorithm` to control the hashing algorithm.
2020-03-12support LLVM globals corresponding to miri allocationsChris Simpkins-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-07-31Make globals with private linkage unnamed. Fixes #50862.Colin Pronovost-1/+1
2018-03-08Codegen testsOliver Schneider-1/+1
2018-02-22Implement --remap-path-prefixJeremy Fitzhardinge-1/+1
Remove experimental -Zremap-path-prefix-from/to, and replace it with the stabilized --remap-path-prefix=from=to variant. This is an implementation for issue of #41555.
2017-12-14Use PathBuf instead of String where applicableOliver Schneider-1/+1
2017-09-30Don't use remapped path when loading modules and include filesPhilip Craig-0/+7
2017-04-28Disable path remapping test on Windows.Michael Woerister-0/+1
2017-04-26Make codegen test for remap-path-prefix more thorough.Michael Woerister-0/+30