diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-09T12·57+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-09T12·57+0000 |
commit | 98df735b5149bc1e39ce6b0bae13fbf7cebcdc05 (patch) | |
tree | 9a9549e0689400b71e230ba51317a2590969b63d /tests/fallback.sh | |
parent | 582e01c06f9ecee25a31c34562926b41dc2856eb (diff) |
* Propagate the deriver of a path through the substitute mechanism.
* Removed some dead code (successor stuff) from nix-push. * Updated terminology in the tests (store expr -> drv path). * Check that the deriver is set properly in the tests.
Diffstat (limited to 'tests/fallback.sh')
-rw-r--r-- | tests/fallback.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/fallback.sh b/tests/fallback.sh index ac4370c61be5..24e5784100c5 100644 --- a/tests/fallback.sh +++ b/tests/fallback.sh @@ -1,14 +1,14 @@ -storeExpr=$($TOP/src/nix-instantiate/nix-instantiate fallback.nix) -echo "store expr is $storeExpr" +drvPath=$($TOP/src/nix-instantiate/nix-instantiate fallback.nix) +echo "derivation is $drvPath" -outPath=$($TOP/src/nix-store/nix-store -q --fallback "$storeExpr") +outPath=$($TOP/src/nix-store/nix-store -q --fallback "$drvPath") echo "output path is $outPath" # Register a non-existant substitute -(echo $outPath && echo $TOP/no-such-program && echo 0 && echo 0) | $TOP/src/nix-store/nix-store --substitute +(echo $outPath && echo "" && echo $TOP/no-such-program && echo 0 && echo 0) | $TOP/src/nix-store/nix-store --substitute # Build the derivation -$TOP/src/nix-store/nix-store -r --fallback "$storeExpr" +$TOP/src/nix-store/nix-store -r --fallback "$drvPath" text=$(cat "$outPath"/hello) if test "$text" != "Hello World!"; then exit 1; fi |