diff options
Diffstat (limited to 'third_party/nix/tests/placeholders.sh')
-rw-r--r-- | third_party/nix/tests/placeholders.sh | 20 |
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 cd1bb7bc2aac..000000000000 --- 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 ]] - "; - } -' |