Skip to content

Commit ee188ca

Browse files
committed
Fix rustc test suite
1 parent c06cbc8 commit ee188ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/test_rustc_tests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ rm -r tests/run-make/output-type-permutations
102102
rm -r tests/run-make/emit-to-stdout
103103
rm -r tests/run-make/compressed-debuginfo
104104
rm -r tests/run-make/symbols-include-type-name
105-
105+
rm -r tests/run-make/notify-all-emit-artifacts
106106

107107
# giving different but possibly correct results
108108
# =============================================
@@ -154,9 +154,9 @@ index 9607ff02f96..b7d97caf9a2 100644
154154
/// Construct a \`rustdoc\` invocation with \`-L \$(TARGET_RPATH_DIR)\` set.
155155
pub fn new() -> Self {
156156
let mut cmd = setup_common();
157-
- let target_rpath_dir = env::var_os("TARGET_RPATH_DIR").unwrap();
157+
- let target_rpath_dir = env_var_os("TARGET_RPATH_DIR");
158158
- cmd.arg(format!("-L{}", target_rpath_dir.to_string_lossy()));
159-
Self { cmd, stdin: None }
159+
Self { cmd }
160160
}
161161
162162
EOF

0 commit comments

Comments
 (0)