File tree 5 files changed +21
-4
lines changed
5 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ if [ "$CLOJURESCRIPT_HOME" = "" ]; then
7
7
CLOJURESCRIPT_HOME=" ` dirname $0 ` /.."
8
8
fi
9
9
10
+ if ! test " $( ls -A " $CLOJURESCRIPT_HOME /lib" 2> /dev/null) " ; then
11
+ >&2 echo lib/ folder is empty, have you run \` script/bootstrap\` ?
12
+ exit 1
13
+ fi
14
+
10
15
CLJSC_CP=' '
11
16
for next in lib/* : src/main/clojure: src/main/cljs: src/test/cljs; do
12
17
CLJSC_CP=" ${CLJSC_CP}${CLOJURESCRIPT_HOME} /${next} "
Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ mkdir -p builds/out-adv
8
8
possible=4
9
9
ran=0
10
10
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
11
+ if ! 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; then
12
+ >&2 echo ClojureScript compilation failed
13
+ exit 1
14
+ fi ;
12
15
13
16
if [ " $V8_HOME " = " " ]; then
14
17
echo " V8_HOME not set, skipping V8 tests"
Original file line number Diff line number Diff line change 4
4
rm -rf builds/out-self
5
5
mkdir -p builds/out-self
6
6
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
7
+ if ! 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; then
8
+ >&2 echo ClojureScript compilation failed
9
+ exit 1
10
+ fi ;
8
11
9
12
echo " Testing with Node"
10
13
node builds/out-self/core-self-test.js
Original file line number Diff line number Diff line change @@ -15,7 +15,10 @@ mkdir -p builds/out-self-parity/clojure/test
15
15
mv clojure/template.clj builds/out-self-parity/clojure
16
16
mv clojure/test builds/out-self-parity/clojure
17
17
18
- bin/cljsc src/test/self/self_parity " {:optimizations :none :output-to \" builds/out-self-parity/main.js\" :output-dir \" builds/out-self-parity\" :main self-parity.test :target :nodejs}"
18
+ if ! bin/cljsc src/test/self/self_parity " {:optimizations :none :output-to \" builds/out-self-parity/main.js\" :output-dir \" builds/out-self-parity\" :main self-parity.test :target :nodejs}" ; then
19
+ >&2 echo ClojureScript compilation failed
20
+ exit 1
21
+ fi ;
19
22
20
23
echo " Testing with Node"
21
24
node builds/out-self-parity/main.js
Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ possible=4
8
8
ran=0
9
9
10
10
# bin/cljsc test >out/core-test.js
11
- bin/cljsc src/test/cljs " {:optimizations :simple :static-fns true :output-dir \" builds/out-simp\" :cache-analysis true :output-wrapper true :compiler-stats true}" > builds/out-simp/core-simple-test.js
11
+ if ! bin/cljsc src/test/cljs " {:optimizations :simple :static-fns true :output-dir \" builds/out-simp\" :cache-analysis true :output-wrapper true :compiler-stats true}" > builds/out-simp/core-simple-test.js; then
12
+ >&2 echo ClojureScript compilation failed
13
+ exit 1
14
+ fi ;
12
15
13
16
if [ " $V8_HOME " = " " ]; then
14
17
echo " V8_HOME not set, skipping V8 tests"
You can’t perform that action at this time.
0 commit comments