comment on test output paths

cargo should be getting a new env var for this soon

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2021-07-19 14:24:13 +02:00
parent a3399f4337
commit 4d04cd9ab9
1 changed files with 3 additions and 1 deletions

View File

@ -362,7 +362,9 @@ pub fn get_encryption_key_password() -> Result<Vec<u8>, Error> {
#[cfg(test)] #[cfg(test)]
fn create_testdir(name: &str) -> Result<String, Error> { fn create_testdir(name: &str) -> Result<String, Error> {
let mut testdir: PathBuf = String::from("./target/testout").into(); // FIXME:
//let mut testdir: PathBuf = format!("{}/testout", env!("CARGO_TARGET_TMPDIR")).into();
let mut testdir: PathBuf = "./target/testout".to_string().into();
testdir.push(std::module_path!()); testdir.push(std::module_path!());
testdir.push(name); testdir.push(name);