Fix the libm-test logfile path
This was broken since the crate's location relative to the target directory had changed.
This commit is contained in:
parent
0d0d317242
commit
d02b25fd6e
1 changed files with 1 additions and 6 deletions
|
|
@ -71,12 +71,7 @@ pub fn test_log(s: &str) {
|
|||
return None;
|
||||
};
|
||||
|
||||
PathBuf::from(x)
|
||||
.parent()
|
||||
.unwrap()
|
||||
.parent()
|
||||
.unwrap()
|
||||
.join("target")
|
||||
PathBuf::from(x).join("../target")
|
||||
}
|
||||
};
|
||||
let outfile = target_dir.join("test-log.txt");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue