about summary refs log tree commit diff
path: root/tests/locking.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/locking.sh')
-rw-r--r--tests/locking.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/locking.sh b/tests/locking.sh
deleted file mode 100644
index 4b41de3916a9..000000000000
--- a/tests/locking.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-source common.sh
-
-drvPath=$($nixinstantiate locking.nix)
-
-echo "derivation is $drvPath"
-
-for i in 1 2 3 4 5; do
-    echo "WORKER $i"
-    $nixstore -rvv "$drvPath" &
-done
-
-sleep 5
-
-outPath=$($nixstore -qvvf "$drvPath")
-
-echo "output path is $outPath"
-
-text=$(cat "$outPath")
-if test "$text" != "aabcade"; then exit 1; fi