diff options
| author | Daniel Paoliello <danpao@microsoft.com> | 2023-03-27 10:42:22 -0700 |
|---|---|---|
| committer | Daniel Paoliello <danpao@microsoft.com> | 2023-04-18 11:01:07 -0700 |
| commit | 1ece1ea48c0d9e4c8414abf872626f7a54747976 (patch) | |
| tree | 2c046e9550324d191c375622ee6837caf7dc5701 /compiler/rustc_interface/src | |
| parent | de96f3d8735b70d5dc1ca178aaee198b329b8f3d (diff) | |
| download | rust-1ece1ea48c0d9e4c8414abf872626f7a54747976.tar.gz rust-1ece1ea48c0d9e4c8414abf872626f7a54747976.zip | |
Stablize raw-dylib, link_ordinal and -Cdlltool
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index 10dfd32d418..efac621d947 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -547,6 +547,7 @@ fn test_codegen_options_tracking_hash() { untracked!(ar, String::from("abc")); untracked!(codegen_units, Some(42)); untracked!(default_linker_libraries, true); + untracked!(dlltool, Some(PathBuf::from("custom_dlltool.exe"))); untracked!(extra_filename, String::from("extra-filename")); untracked!(incremental, Some(String::from("abc"))); // `link_arg` is omitted because it just forwards to `link_args`. @@ -651,7 +652,6 @@ fn test_unstable_options_tracking_hash() { untracked!(assert_incr_state, Some(String::from("loaded"))); untracked!(deduplicate_diagnostics, false); untracked!(dep_tasks, true); - untracked!(dlltool, Some(PathBuf::from("custom_dlltool.exe"))); untracked!(dont_buffer_diagnostics, true); untracked!(dump_dep_graph, true); untracked!(dump_drop_tracking_cfg, Some("cfg.dot".to_string())); |
