about summary refs log tree commit diff
path: root/compiler/rustc_interface
diff options
context:
space:
mode:
authorMateusz Mikuła <mati865@gmail.com>2020-07-30 22:10:48 +0200
committerMateusz Mikuła <mati865@gmail.com>2020-08-31 15:13:31 +0200
commit23f0ccfe5d9999a54dfcc4f5ba953981ba092aa7 (patch)
tree115211c629084c8c99ab6d4cff5c82f2b5c9dd86 /compiler/rustc_interface
parent8bfe289886af727150c1b9ec502cbfd7bbf425e8 (diff)
downloadrust-23f0ccfe5d9999a54dfcc4f5ba953981ba092aa7.tar.gz
rust-23f0ccfe5d9999a54dfcc4f5ba953981ba092aa7.zip
Stabilise link-self-contained option
Diffstat (limited to 'compiler/rustc_interface')
-rw-r--r--compiler/rustc_interface/src/tests.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs
index cb906b3d911..ada8dc90494 100644
--- a/compiler/rustc_interface/src/tests.rs
+++ b/compiler/rustc_interface/src/tests.rs
@@ -402,6 +402,7 @@ fn test_codegen_options_tracking_hash() {
     // `link_arg` is omitted because it just forwards to `link_args`.
     untracked!(link_args, vec![String::from("abc"), String::from("def")]);
     untracked!(link_dead_code, Some(true));
+    untracked!(link_self_contained, Some(true));
     untracked!(linker, Some(PathBuf::from("linker")));
     untracked!(linker_flavor, Some(LinkerFlavor::Gcc));
     untracked!(no_stack_check, true);