about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2009-03-31T21·14+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2009-03-31T21·14+0000
commit351bf658f99e91b41d2b11f994f799dd34a600e2 (patch)
treec7c3bd39993d46e2a5daeb5b823c7d88c235dfbf /tests
parentcff2b2a13aea7cf30c0ef5be449e355594dc80c2 (diff)
* Do a substitution even if --max-jobs == 0.
Diffstat (limited to 'tests')
-rw-r--r--tests/substitutes2.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/substitutes2.sh b/tests/substitutes2.sh
index 0bbc13913d..ad0bfcc268 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