diff options
| author | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-05 09:13:28 +0100 |
|---|---|---|
| committer | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-11 09:32:08 +0000 |
| commit | cf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch) | |
| tree | 40a88d9a46aaf3e8870676eb2538378b75a263eb /src/test/incremental/split_debuginfo_mode.rs | |
| parent | ca855e6e42787ecd062d81d53336fe6788ef51a9 (diff) | |
| download | rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip | |
Move /src/test to /tests
Diffstat (limited to 'src/test/incremental/split_debuginfo_mode.rs')
| -rw-r--r-- | src/test/incremental/split_debuginfo_mode.rs | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/test/incremental/split_debuginfo_mode.rs b/src/test/incremental/split_debuginfo_mode.rs deleted file mode 100644 index edc1a80d30e..00000000000 --- a/src/test/incremental/split_debuginfo_mode.rs +++ /dev/null @@ -1,33 +0,0 @@ -// This test case makes sure that changing split-debuginfo commandline options triggers a full re-compilation. -// We only test on x86_64-unknown-linux-gnu because there all combinations split-debuginfo settings are valid -// and the test is platform-independent otherwise. - -// ignore-tidy-linelength -// only-x86_64-unknown-linux-gnu -// revisions:rpass1 rpass2 rpass3 rpass4 - -// [rpass1]compile-flags: -Zquery-dep-graph -Csplit-debuginfo=unpacked -Zsplit-dwarf-kind=single -Zsplit-dwarf-inlining=on -// [rpass2]compile-flags: -Zquery-dep-graph -Csplit-debuginfo=packed -Zsplit-dwarf-kind=single -Zsplit-dwarf-inlining=on -// [rpass3]compile-flags: -Zquery-dep-graph -Csplit-debuginfo=packed -Zsplit-dwarf-kind=split -Zsplit-dwarf-inlining=on -// [rpass4]compile-flags: -Zquery-dep-graph -Csplit-debuginfo=packed -Zsplit-dwarf-kind=split -Zsplit-dwarf-inlining=off - -#![feature(rustc_attrs)] -// For rpass2 we change -Csplit-debuginfo and thus expect every CGU to be recompiled -#![rustc_partition_codegened(module = "split_debuginfo_mode", cfg = "rpass2")] -#![rustc_partition_codegened(module = "split_debuginfo_mode-another_module", cfg = "rpass2")] -// For rpass3 we change -Zsplit-dwarf-kind and thus also expect every CGU to be recompiled -#![rustc_partition_codegened(module = "split_debuginfo_mode", cfg = "rpass3")] -#![rustc_partition_codegened(module = "split_debuginfo_mode-another_module", cfg = "rpass3")] -// For rpass4 we change -Zsplit-dwarf-inlining and thus also expect every CGU to be recompiled -#![rustc_partition_codegened(module = "split_debuginfo_mode", cfg = "rpass4")] -#![rustc_partition_codegened(module = "split_debuginfo_mode-another_module", cfg = "rpass4")] - -mod another_module { - pub fn foo() -> &'static str { - "hello world" - } -} - -pub fn main() { - println!("{}", another_module::foo()); -} |
