Skip to content

Commit

Permalink
Print the correct basename of the src dir
Browse files Browse the repository at this point in the history
Thanks to @RalfJung for the fix

Fixes #76
  • Loading branch information
Thomas Jespersen committed Sep 17, 2017
1 parent c3ec2f7 commit 0ab6497
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,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/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 0ab6497

Please sign in to comment.