about summary refs log tree commit diff
path: root/third_party/nix/tests/placeholders.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/tests/placeholders.sh')
-rw-r--r--third_party/nix/tests/placeholders.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/third_party/nix/tests/placeholders.sh b/third_party/nix/tests/placeholders.sh
deleted file mode 100644
index cd1bb7bc2a..0000000000
--- a/third_party/nix/tests/placeholders.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-source common.sh
-
-clearStore
-
-nix-build --no-out-link -E '
-  with import ./config.nix;
-
-  mkDerivation {
-    name = "placeholders";
-    outputs = [ "out" "bin" "dev" ];
-    buildCommand = "
-      echo foo1 > $out
-      echo foo2 > $bin
-      echo foo3 > $dev
-      [[ $(cat ${placeholder "out"}) = foo1 ]]
-      [[ $(cat ${placeholder "bin"}) = foo2 ]]
-      [[ $(cat ${placeholder "dev"}) = foo3 ]]
-    ";
-  }
-'