Add -Z simulate-remapped-rust-src-base option to simulate path virutalisation during bootstrapping
This commit is contained in:
parent
5417b45c26
commit
0ac9ca4f88
4 changed files with 35 additions and 3 deletions
|
|
@ -1,10 +1,13 @@
|
|||
// ignore-windows
|
||||
|
||||
// compile-flags: -g -C no-prepopulate-passes --remap-path-prefix=/=/the/root/
|
||||
// compile-flags: -g -C no-prepopulate-passes -Z simulate-remapped-rust-src-base=/rustc/xyz
|
||||
|
||||
// Here we check that imported code from std has their path remapped
|
||||
// Here we check that importing std will not cause real path to std source files
|
||||
// to leak. If rustc was compiled with remap-debuginfo = true, this should be
|
||||
// true automatically. If paths to std library hasn't been remapped, we use the
|
||||
// above simulate-remapped-rust-src-base option to do it temporarily
|
||||
|
||||
// CHECK: !DIFile(filename: "{{/the/root/.*/library/std/src/panic.rs}}"
|
||||
// CHECK: !DIFile(filename: "{{/rustc/.*/library/std/src/panic.rs}}"
|
||||
fn main() {
|
||||
std::thread::spawn(|| {
|
||||
println!("hello");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue