diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:13 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:13 +0000 |
commit | 218caa410aa38c29984be31a5229b9fa717560ee (patch) | |
tree | c54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/incremental/remapped_paths_cc | |
parent | Releasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip |
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/incremental/remapped_paths_cc')
-rw-r--r-- | tests/incremental/remapped_paths_cc/auxiliary/extern_crate.rs | 11 | ||||
-rw-r--r-- | tests/incremental/remapped_paths_cc/main.rs | 28 |
2 files changed, 39 insertions, 0 deletions
diff --git a/tests/incremental/remapped_paths_cc/auxiliary/extern_crate.rs b/tests/incremental/remapped_paths_cc/auxiliary/extern_crate.rs new file mode 100644 index 000000000..627b99445 --- /dev/null +++ b/tests/incremental/remapped_paths_cc/auxiliary/extern_crate.rs @@ -0,0 +1,11 @@ +//[rpass1] compile-flags: -g +//[rpass2] compile-flags: -g +//[rpass3] compile-flags: -g --remap-path-prefix={{src-base}}=/the/src + +#![feature(rustc_attrs)] +#![crate_type="rlib"] + +#[inline(always)] +pub fn inline_fn() { + println!("test"); +} diff --git a/tests/incremental/remapped_paths_cc/main.rs b/tests/incremental/remapped_paths_cc/main.rs new file mode 100644 index 000000000..b01f02444 --- /dev/null +++ b/tests/incremental/remapped_paths_cc/main.rs @@ -0,0 +1,28 @@ +// revisions:rpass1 rpass2 rpass3 +// compile-flags: -Z query-dep-graph -g +// aux-build:extern_crate.rs + +// ignore-asmjs wasm2js does not support source maps yet +// This test case makes sure that we detect if paths emitted into debuginfo +// are changed, even when the change happens in an external crate. + +#![feature(rustc_attrs)] + +#![rustc_partition_reused(module="main", cfg="rpass2")] +#![rustc_partition_reused(module="main-some_mod", cfg="rpass2")] +#![rustc_partition_reused(module="main", cfg="rpass3")] +#![rustc_partition_codegened(module="main-some_mod", cfg="rpass3")] + +extern crate extern_crate; + +fn main() { + some_mod::some_fn(); +} + +mod some_mod { + use extern_crate; + + pub fn some_fn() { + extern_crate::inline_fn(); + } +} |