about summary refs log tree commit diff
path: root/tests/build-hook.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/build-hook.sh')
-rw-r--r--tests/build-hook.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/build-hook.sh b/tests/build-hook.sh
deleted file mode 100644
index 2005c7cebdc4..000000000000
--- a/tests/build-hook.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-source common.sh
-
-clearStore
-
-outPath=$(nix-build build-hook.nix --no-out-link --option build-hook $(pwd)/build-hook.hook.sh)
-
-echo "output path is $outPath"
-
-text=$(cat "$outPath"/foobar)
-if test "$text" != "BARBAR"; then exit 1; fi