summary refs log tree commit diff
path: root/nixos/tests/nfs
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2021-11-05 01:43:22 +0100
committerRobert Hensing <robert@roberthensing.nl>2021-11-05 02:41:26 +0100
commit739c51ae4ef9535b37672d7dc303bce432562922 (patch)
tree9da4fc54649597897f3c65c78991fab74ee0f87f /nixos/tests/nfs
parent698fb089d8276ac6907ae3a13ee1933a59e12112 (diff)
downloadnixpkgs-739c51ae4ef9535b37672d7dc303bce432562922.tar
nixpkgs-739c51ae4ef9535b37672d7dc303bce432562922.tar.gz
nixpkgs-739c51ae4ef9535b37672d7dc303bce432562922.tar.bz2
nixpkgs-739c51ae4ef9535b37672d7dc303bce432562922.tar.lz
nixpkgs-739c51ae4ef9535b37672d7dc303bce432562922.tar.xz
nixpkgs-739c51ae4ef9535b37672d7dc303bce432562922.tar.zst
nixpkgs-739c51ae4ef9535b37672d7dc303bce432562922.zip
nixosTests: Redirect stdout to stderr when detaching
Avoids blocking on stdout.
Diffstat (limited to 'nixos/tests/nfs')
-rw-r--r--nixos/tests/nfs/simple.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/nfs/simple.nix b/nixos/tests/nfs/simple.nix
index 6a01089c082..1e319a8eec8 100644
--- a/nixos/tests/nfs/simple.nix
+++ b/nixos/tests/nfs/simple.nix
@@ -66,7 +66,7 @@ in
           client2.succeed("time flock -n -s /data/lock true")
 
       with subtest("client 2 fails to acquire lock held by client 1"):
-          client1.succeed("flock -x /data/lock -c 'touch locked; sleep 100000' &")
+          client1.succeed("flock -x /data/lock -c 'touch locked; sleep 100000' >&2 &")
           client1.wait_for_file("locked")
           client2.fail("flock -n -s /data/lock true")