aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-03-30 17:01:32 +0200
committerEelco Dolstra <edolstra@gmail.com>2022-03-31 13:43:20 +0200
commit162beb25955adcedeed76e97510feb577d4f86db (patch)
tree11ad967e543e4e411d6ceb2be6c15c88943bbc92 /tests
parentb2ae922747adfe187d02c1bfca8231c2d8bceb75 (diff)
Fix test
Diffstat (limited to 'tests')
-rw-r--r--tests/impure-derivations.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/impure-derivations.sh b/tests/impure-derivations.sh
index 1b33a785c..aab5cb61a 100644
--- a/tests/impure-derivations.sh
+++ b/tests/impure-derivations.sh
@@ -10,7 +10,7 @@ clearStore
# Basic test of impure derivations: building one a second time should not use the previous result.
printf 0 > $TEST_ROOT/counter
-json=$(nix build -L --no-link --json --file ./impure-derivations.nix impure)
+json=$(nix build -L --no-link --json --file ./impure-derivations.nix impure.all)
path1=$(echo $json | jq -r .[].outputs.out)
path1_stuff=$(echo $json | jq -r .[].outputs.stuff)
[[ $(< $path1/n) = 0 ]]