Skip to content

Commit c98c0ee

Browse files
committed
enable parallel builds for test and self host tests
1 parent e8efc64 commit c98c0ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

script/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mkdir -p builds/out-adv
88
possible=4
99
ran=0
1010

11-
bin/cljsc src/test/cljs "{:optimizations :advanced :output-wrapper true :verbose true :compiler-stats true :output-dir \"builds/out-adv\"}" > builds/out-adv/core-advanced-test.js
11+
bin/cljsc src/test/cljs "{:optimizations :advanced :output-wrapper true :verbose true :compiler-stats true :parallel-build true :output-dir \"builds/out-adv\"}" > builds/out-adv/core-advanced-test.js
1212

1313
if [ "$V8_HOME" = "" ]; then
1414
echo "V8_HOME not set, skipping V8 tests"

script/test-self-host

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
rm -rf builds/out-self
55
mkdir -p builds/out-self
66

7-
bin/cljsc src/test/self/self_host "{:optimizations :simple :static-fns true :output-dir \"builds/out-self\" :optimize-constants true :verbose true :compiler-stats true :target :nodejs}" > builds/out-self/core-self-test.js
7+
bin/cljsc src/test/self/self_host "{:optimizations :simple :static-fns true :output-dir \"builds/out-self\" :optimize-constants true :verbose true :compiler-stats true :parallel-build true :target :nodejs}" > builds/out-self/core-self-test.js
88

99
echo "Testing with Node"
1010
node builds/out-self/core-self-test.js

0 commit comments

Comments
 (0)