##// END OF EJS Templates
rust: fix testing with $TMPDIR ≠ /tmp...
Dan Villiom Podlaski Christiansen -
r46862:db2bc9e6 default
parent child Browse files
Show More
@@ -206,6 +206,7 b' mod tests {'
206 206
207 207 let base_dir = tempdir().unwrap();
208 208 let base_dir_path = base_dir.path();
209 let skip = base_dir_path.components().count() - 1;
209 210 let a = base_dir_path.join("a");
210 211 let b = base_dir_path.join("b");
211 212 create_dir(&a).unwrap();
@@ -215,7 +216,7 b' mod tests {'
215 216 // TODO make portable
216 217 std::os::unix::fs::symlink(&a, &b).unwrap();
217 218
218 let buf = b.join("in_a").components().skip(2).collect::<PathBuf>();
219 let buf = b.join("in_a").components().skip(skip).collect::<PathBuf>();
219 220 eprintln!("buf: {}", buf.display());
220 221 let path = path_to_hg_path_buf(buf).unwrap();
221 222 assert_eq!(
General Comments 0
You need to be logged in to leave comments. Login now