mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
Merge pull request #1011 from uutils/fix-build-error
Temporary fix for errors in testing
This commit is contained in:
commit
fd7be06e5b
2 changed files with 13 additions and 1 deletions
4
build.rs
4
build.rs
|
@ -4,6 +4,10 @@ use std::io::Write;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
pub fn main() {
|
pub fn main() {
|
||||||
|
if let Ok(profile) = env::var("PROFILE") {
|
||||||
|
println!("cargo:rustc-cfg=build={:?}", profile);
|
||||||
|
}
|
||||||
|
|
||||||
let feature_prefix = "CARGO_FEATURE_";
|
let feature_prefix = "CARGO_FEATURE_";
|
||||||
let out_dir = env::var("OUT_DIR").unwrap();
|
let out_dir = env::var("OUT_DIR").unwrap();
|
||||||
|
|
||||||
|
|
|
@ -374,7 +374,15 @@ impl TestScenario {
|
||||||
// Instead of hardcoding the path relative to the current
|
// Instead of hardcoding the path relative to the current
|
||||||
// directory, use Cargo's OUT_DIR to find path to executable.
|
// directory, use Cargo's OUT_DIR to find path to executable.
|
||||||
// This allows tests to be run using profiles other than debug.
|
// This allows tests to be run using profiles other than debug.
|
||||||
let target_dir = path_concat!(env::var("OUT_DIR").unwrap(), "..", "..", "..", PROGNAME);
|
// let target_dir = path_concat!(env::var("OUT_DIR").unwrap(), "..", "..", "..", PROGNAME);
|
||||||
|
let target_dir;
|
||||||
|
// FIXME: $OUT_DIR is not set by nightly cargo
|
||||||
|
// See also: https://github.com/rust-lang/cargo/issues/3368
|
||||||
|
if cfg!(build = "release") {
|
||||||
|
target_dir = path_concat!(env!("CARGO_MANIFEST_DIR"), "target", "release", PROGNAME);
|
||||||
|
} else {
|
||||||
|
target_dir = path_concat!(env!("CARGO_MANIFEST_DIR"), "target", "debug", PROGNAME);
|
||||||
|
}
|
||||||
PathBuf::from(AtPath::new(Path::new(&target_dir)).root_dir_resolved())
|
PathBuf::from(AtPath::new(Path::new(&target_dir)).root_dir_resolved())
|
||||||
},
|
},
|
||||||
util_name: String::from(util_name),
|
util_name: String::from(util_name),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue