Skip to content

Commit 54b6849

Browse files
committed
Remove unused rust-demangler support from compiletest
1 parent feb8f3c commit 54b6849

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

src/tools/compiletest/src/common.rs

-3
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,6 @@ pub struct Config {
187187
/// The rustdoc executable.
188188
pub rustdoc_path: Option<PathBuf>,
189189

190-
/// The rust-demangler executable.
191-
pub rust_demangler_path: Option<PathBuf>,
192-
193190
/// The coverage-dump executable.
194191
pub coverage_dump_path: Option<PathBuf>,
195192

src/tools/compiletest/src/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ pub fn parse_config(args: Vec<String>) -> Config {
4646
.reqopt("", "run-lib-path", "path to target shared libraries", "PATH")
4747
.reqopt("", "rustc-path", "path to rustc to use for compiling", "PATH")
4848
.optopt("", "rustdoc-path", "path to rustdoc to use for compiling", "PATH")
49-
.optopt("", "rust-demangler-path", "path to rust-demangler to use in tests", "PATH")
5049
.optopt("", "coverage-dump-path", "path to coverage-dump to use in tests", "PATH")
5150
.reqopt("", "python", "path to python to use for doc tests", "PATH")
5251
.optopt("", "jsondocck-path", "path to jsondocck to use for doc tests", "PATH")
@@ -232,7 +231,6 @@ pub fn parse_config(args: Vec<String>) -> Config {
232231
run_lib_path: make_absolute(opt_path(matches, "run-lib-path")),
233232
rustc_path: opt_path(matches, "rustc-path"),
234233
rustdoc_path: matches.opt_str("rustdoc-path").map(PathBuf::from),
235-
rust_demangler_path: matches.opt_str("rust-demangler-path").map(PathBuf::from),
236234
coverage_dump_path: matches.opt_str("coverage-dump-path").map(PathBuf::from),
237235
python: matches.opt_str("python").unwrap(),
238236
jsondocck_path: matches.opt_str("jsondocck-path"),
@@ -337,7 +335,6 @@ pub fn log_config(config: &Config) {
337335
logv(c, format!("run_lib_path: {:?}", config.run_lib_path));
338336
logv(c, format!("rustc_path: {:?}", config.rustc_path.display()));
339337
logv(c, format!("rustdoc_path: {:?}", config.rustdoc_path));
340-
logv(c, format!("rust_demangler_path: {:?}", config.rust_demangler_path));
341338
logv(c, format!("src_base: {:?}", config.src_base.display()));
342339
logv(c, format!("build_base: {:?}", config.build_base.display()));
343340
logv(c, format!("stage_id: {}", config.stage_id));

src/tools/compiletest/src/runtest.rs

-4
Original file line numberDiff line numberDiff line change
@@ -3561,10 +3561,6 @@ impl<'test> TestCx<'test> {
35613561
cmd.env("RUSTDOC", cwd.join(rustdoc));
35623562
}
35633563

3564-
if let Some(ref rust_demangler) = self.config.rust_demangler_path {
3565-
cmd.env("RUST_DEMANGLER", cwd.join(rust_demangler));
3566-
}
3567-
35683564
if let Some(ref node) = self.config.nodejs {
35693565
cmd.env("NODE", node);
35703566
}

0 commit comments

Comments
 (0)