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:
Trevor Gross 2025-04-20 04:48:51 +00:00 committed by Trevor Gross
parent 0d0d317242
commit d02b25fd6e

View file

@ -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");