diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-31T21·14+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-31T21·14+0000 |
commit | 351bf658f99e91b41d2b11f994f799dd34a600e2 (patch) | |
tree | c7c3bd39993d46e2a5daeb5b823c7d88c235dfbf /tests | |
parent | cff2b2a13aea7cf30c0ef5be449e355594dc80c2 (diff) |
* Do a substitution even if --max-jobs == 0.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/substitutes2.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/substitutes2.sh b/tests/substitutes2.sh index 0bbc13913dac..ad0bfcc2687e 100644 --- a/tests/substitutes2.sh +++ b/tests/substitutes2.sh @@ -15,7 +15,7 @@ echo $outPath > $TEST_ROOT/sub-paths # First try a substituter that fails, then one that succeeds export NIX_SUBSTITUTERS=$(pwd)/substituter2.sh:$(pwd)/substituter.sh -$nixstore -rvv "$drvPath" +$nixstore -j0 -rvv "$drvPath" text=$(cat "$outPath"/hello) if test "$text" != "Hallo Wereld"; then echo "wrong substitute output: $text"; exit 1; fi |