summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamal Marhubi <kamal@marhubi.com>2016-10-24 22:43:45 -0400
committerKamal Marhubi <kamal@marhubi.com>2016-10-24 22:52:05 -0400
commit0fa7250b9575a2746519a854d0138c4c8255f109 (patch)
tree7a5b22fbfa8b6ccc67f83421d15b35fcc59ee6de
parente6184859468bacf506730ef9946cc4d09ff65111 (diff)
downloadnix-0fa7250b9575a2746519a854d0138c4c8255f109.zip
mount: Run test_mount_bind in CI
Looks like Travis allows bind mounts in their container infra now.
-rw-r--r--test/test_mount.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/test_mount.rs b/test/test_mount.rs
index 7ddbce9f..73d26891 100644
--- a/test/test_mount.rs
+++ b/test/test_mount.rs
@@ -129,10 +129,6 @@ exit 23";
pub fn test_mount_bind() {
use std::env;
- if env::var("CI").is_ok() && env::var("TRAVIS").is_ok() {
- print!("Travis does not allow bind mounts, skipping.");
- return;
- }
let tempdir = TempDir::new("nix-test_mount")
.unwrap_or_else(|e| panic!("tempdir failed: {}", e));