about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2005-01-25T13·00+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2005-01-25T13·00+0000
commitc6290e42bc8890e2036013773a98e3551352c91a (patch)
tree898c4017359d92cd942be6890d298e0574dee1c1 /tests
parent581fc477838e9cf9e5d9657920ef63ea836050ee (diff)
* Fix the `--fallback' switch.
* Fix the substitutes tests.

Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am4
-rw-r--r--tests/fallback.sh13
-rw-r--r--tests/substituter.builder.sh22
-rw-r--r--tests/substituter.nix.in6
-rwxr-xr-xtests/substituter.sh10
-rw-r--r--tests/substituter2.nix.in6
-rwxr-xr-x[-rw-r--r--]tests/substituter2.sh (renamed from tests/substituter2.builder.sh)6
-rw-r--r--tests/substitutes.sh16
-rw-r--r--tests/substitutes2.sh31
9 files changed, 28 insertions, 86 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 1e2ad2969949..d91b021cacf6 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -19,8 +19,8 @@ dependencies.sh: dependencies.nix
 locking.sh: locking.nix
 parallel.sh: parallel.nix
 build-hook.sh: build-hook.nix
-substitutes.sh: substitutes.nix substituter.nix
-substitutes2.sh: substitutes2.nix substituter.nix substituter2.nix
+substitutes.sh: substitutes.nix
+substitutes2.sh: substitutes2.nix
 fallback.sh: fallback.nix
 
 TESTS = init.sh hash.sh lang.sh simple.sh dependencies.sh locking.sh parallel.sh \
diff --git a/tests/fallback.sh b/tests/fallback.sh
index b859d74ee707..081e5695f400 100644
--- a/tests/fallback.sh
+++ b/tests/fallback.sh
@@ -1,15 +1,14 @@
 storeExpr=$($TOP/src/nix-instantiate/nix-instantiate fallback.nix)
-
 echo "store expr is $storeExpr"
 
-# Register a non-existant successor (and a nox-existant substitute).
-suc=$NIX_STORE_DIR/deadbeafdeadbeafdeadbeafdeadbeaf-s.store
-(echo $suc && echo $TOP/no-such-program && echo 0) | $TOP/src/nix-store/nix-store --substitute
-$TOP/src/nix-store/nix-store --successor $storeExpr $suc
+outPath=$($TOP/src/nix-store/nix-store -q --fallback "$storeExpr")
+echo "output path is $outPath"
 
-outPath=$($TOP/src/nix-store/nix-store -qnf --fallback "$storeExpr")
+# Register a non-existant substitute
+(echo $outPath && echo $TOP/no-such-program && echo 0) | $TOP/src/nix-store/nix-store --substitute
 
-echo "output path is $outPath"
+# Build the derivation
+$TOP/src/nix-store/nix-store -r --fallback "$storeExpr"
 
 text=$(cat "$outPath"/hello)
 if test "$text" != "Hello World!"; then exit 1; fi
diff --git a/tests/substituter.builder.sh b/tests/substituter.builder.sh
deleted file mode 100644
index c9ce0a08c6a8..000000000000
--- a/tests/substituter.builder.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-# Set a PATH (!!! impure).
-export PATH=/bin:/usr/bin:$PATH
-
-mkdir $out
-
-cat > $out/substituter <<EOF
-#! /bin/sh -ex
-echo \$*
-
-case \$* in
-    *aaaa*)
-        echo "Closure([\"\$2\"],[(\"\$2\",[])])" > \$1
-        ;;
-    *)
-        mkdir \$1
-        echo \$3 \$4 > \$1/hello
-        ;;
-esac        
-EOF
-
-chmod +x $out/substituter
-
diff --git a/tests/substituter.nix.in b/tests/substituter.nix.in
deleted file mode 100644
index 8f9da530c38e..000000000000
--- a/tests/substituter.nix.in
+++ /dev/null
@@ -1,6 +0,0 @@
-derivation {
-  name = "substituter";
-  system = "@system@";
-  builder = "@shell@";
-  args = ["-e" "-x" ./substituter.builder.sh];
-}
\ No newline at end of file
diff --git a/tests/substituter.sh b/tests/substituter.sh
new file mode 100755
index 000000000000..005e97605c91
--- /dev/null
+++ b/tests/substituter.sh
@@ -0,0 +1,10 @@
+#! /bin/sh -ex
+echo $*
+
+case $* in
+    *)
+        mkdir $1
+        echo $3 $4 > $1/hello
+        ;;
+esac        
+
diff --git a/tests/substituter2.nix.in b/tests/substituter2.nix.in
deleted file mode 100644
index 34065b00a6c5..000000000000
--- a/tests/substituter2.nix.in
+++ /dev/null
@@ -1,6 +0,0 @@
-derivation {
-  name = "substituter-2";
-  system = "@system@";
-  builder = "@shell@";
-  args = ["-e" "-x" ./substituter2.builder.sh];
-}
\ No newline at end of file
diff --git a/tests/substituter2.builder.sh b/tests/substituter2.sh
index 1794500d6f6d..84925b94405f 100644..100755
--- a/tests/substituter2.builder.sh
+++ b/tests/substituter2.sh
@@ -8,12 +8,8 @@ cat > $out/substituter <<EOF
 echo \$*
 
 case \$* in
-    *aaaa*)
-        exit 1
-        ;;
     *)
-        mkdir \$1
-        echo Foo \$3 \$4 > \$1/hello
+        exit 1
         ;;
 esac        
 EOF
diff --git a/tests/substitutes.sh b/tests/substitutes.sh
index 72703af4a22f..c0b61288a40b 100644
--- a/tests/substitutes.sh
+++ b/tests/substitutes.sh
@@ -3,28 +3,18 @@ storeExpr=$($TOP/src/nix-instantiate/nix-instantiate substitutes.nix)
 echo "store expr is $storeExpr"
 
 # Find the output path.
-outPath=$($TOP/src/nix-store/nix-store -qvvvvv "$storeExpr")
+outPath=$($TOP/src/nix-store/nix-store -qvv "$storeExpr")
 echo "output path is $outPath"
 
-# Build the substitute program.
-subProgram=$($TOP/src/nix-store/nix-store -qnf \
-    $($TOP/src/nix-instantiate/nix-instantiate substituter.nix))/substituter
-echo "substitute program is $subProgram"
-
 regSub() {
     (echo $1 && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld) | $TOP/src/nix-store/nix-store --substitute
 }
 
-# Register a fake successor, and a substitute for it.
-suc=$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-s.store
-regSub $suc $subProgram
-$TOP/src/nix-store/nix-store --successor $storeExpr $suc
-
 # Register a substitute for the output path.
-regSub $outPath $subProgram
+regSub $outPath $(pwd)/substituter.sh
 
 
-$TOP/src/nix-store/nix-store -rvvvvv "$storeExpr"
+$TOP/src/nix-store/nix-store -rvv "$storeExpr"
 
 text=$(cat "$outPath"/hello)
 if test "$text" != "Hallo Wereld"; then exit 1; fi
diff --git a/tests/substitutes2.sh b/tests/substitutes2.sh
index b38f4c43fd57..56f2bab3745e 100644
--- a/tests/substitutes2.sh
+++ b/tests/substitutes2.sh
@@ -6,37 +6,18 @@ echo "store expr is $storeExpr"
 outPath=$($TOP/src/nix-store/nix-store -qvvvvv "$storeExpr")
 echo "output path is $outPath"
 
-# Build the substitute program.
-subProgram=$($TOP/src/nix-store/nix-store -qnf \
-    $($TOP/src/nix-instantiate/nix-instantiate substituter.nix))/substituter
-echo "substitute program is $subProgram"
-
-# Build the failing substitute program.
-subProgram2=$($TOP/src/nix-store/nix-store -qnf \
-    $($TOP/src/nix-instantiate/nix-instantiate substituter2.nix))/substituter
-echo "failing substitute program is $subProgram2"
-
 regSub() {
     (echo $1 && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld) | $TOP/src/nix-store/nix-store --substitute
 }
 
-# Register a fake successor, and a substitute for it.
-suc=$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab-s.store
-regSub $suc $subProgram
-$TOP/src/nix-store/nix-store --successor $storeExpr $suc
-
-# Register a failing substitute for it (it takes precedence).
-regSub $suc $subProgram2
-
 # Register a substitute for the output path.
-regSub $outPath $subProgram
-
-# Register another substitute for the output path.  This one will
-# produce other output. 
-regSub $outPath $subProgram2
+regSub $outPath $(pwd)/substituter.sh
 
+# Register another substitute for the output path.  This one takes
+# precedence over the previous one.  It will fail.
+regSub $outPath $(pwd)/substituter2.sh
 
-$TOP/src/nix-store/nix-store -rvvvvv "$storeExpr"
+$TOP/src/nix-store/nix-store -rvv "$storeExpr"
 
 text=$(cat "$outPath"/hello)
-if test "$text" != "Foo Hallo Wereld"; then exit 1; fi
+if test "$text" != "Hallo Wereld"; then exit 1; fi