Skip to content

Commit

Permalink
Rollup merge of rust-lang#44630 - RalfJung:compiletest, r=Mark-Simula…
Browse files Browse the repository at this point in the history
…crum

compiletest: print the correct basename of the src dir

See <Manishearth/compiletest-rs#76>.

Fixes rust-lang#40712
  • Loading branch information
TimNN committed Sep 17, 2017
2 parents bbb8986 + 83589f2 commit 6b1f0c8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/tools/compiletest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ pub fn make_test_name(config: &Config, testpaths: &TestPaths) -> test::TestName
//
// run-pass/foo/bar/baz.rs
let path =
PathBuf::from(config.mode.to_string())
PathBuf::from(config.src_base.file_name().unwrap())
.join(&testpaths.relative_dir)
.join(&testpaths.file.file_name().unwrap());
test::DynTestName(format!("[{}] {}", config.mode, path.display()))
Expand Down
2 changes: 0 additions & 2 deletions src/tools/compiletest/src/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2174,8 +2174,6 @@ actual:\n\
}

fn run_ui_test(&self) {
println!("ui: {}", self.testpaths.file.display());

let proc_res = self.compile_test();

let expected_stderr_path = self.expected_output_path("stderr");
Expand Down

0 comments on commit 6b1f0c8

Please sign in to comment.