1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

appveyor and windows testing tooling updates

This commit is contained in:
Nathan Ross 2015-12-23 22:59:04 -05:00
parent caece01a6f
commit 83295f1e08
2 changed files with 6 additions and 2 deletions

View file

@ -16,7 +16,13 @@ use std::ffi::OsStr;
use self::tempdir::TempDir;
use std::rc::Rc;
#[cfg(windows)]
static PROGNAME: &'static str = "target\\debug\\uutils.exe";
#[cfg(windows)]
static FIXTURES_DIR: &'static str = "tests\\fixtures";
#[cfg(not(windows))]
static PROGNAME: &'static str = "target/debug/uutils";
#[cfg(not(windows))]
static FIXTURES_DIR: &'static str = "tests/fixtures";
static ALREADY_RUN: &'static str = " you have already run this UCommand, if you want to run \
another command in the same test, use TestSet::new instead of \