about summary refs log tree commit diff
path: root/third_party/nix/tests/pure-eval.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/tests/pure-eval.sh')
-rw-r--r--third_party/nix/tests/pure-eval.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/third_party/nix/tests/pure-eval.sh b/third_party/nix/tests/pure-eval.sh
deleted file mode 100644
index 49c8564487..0000000000
--- a/third_party/nix/tests/pure-eval.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-source common.sh
-
-clearStore
-
-nix eval --pure-eval '(assert 1 + 2 == 3; true)'
-
-[[ $(nix eval '(builtins.readFile ./pure-eval.sh)') =~ clearStore ]]
-
-(! nix eval --pure-eval '(builtins.readFile ./pure-eval.sh)')
-
-(! nix eval --pure-eval '(builtins.currentTime)')
-(! nix eval --pure-eval '(builtins.currentSystem)')
-
-(! nix-instantiate --pure-eval ./simple.nix)
-
-[[ $(nix eval "((import (builtins.fetchurl { url = file://$(pwd)/pure-eval.nix; })).x)") == 123 ]]
-(! nix eval --pure-eval "((import (builtins.fetchurl { url = file://$(pwd)/pure-eval.nix; })).x)")
-nix eval --pure-eval "((import (builtins.fetchurl { url = file://$(pwd)/pure-eval.nix; sha256 = \"$(nix hash-file pure-eval.nix --type sha256)\"; })).x)"