Skip to content

Commit 8962849

Browse files
danielcomptondnolen
authored and
dnolen
committed
Check for compilation success, and lib folder
If script/bootstrap hasn't been run, then running script/test returns the slightly cryptic error message: Error: Could not find or load main class clojure.main This patch checks if the lib folder exists and has files in it. If not it prompts the user to run script/bootstrap and exits. This patch also adds a check for CLJS compilation success before running tests against the various VM engines.
1 parent e475e1d commit 8962849

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

bin/cljsc

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ if [ "$CLOJURESCRIPT_HOME" = "" ]; then
77
CLOJURESCRIPT_HOME="`dirname $0`/.."
88
fi
99

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+
1015
CLJSC_CP=''
1116
for next in lib/*: src/main/clojure: src/main/cljs: src/test/cljs; do
1217
CLJSC_CP="${CLJSC_CP}${CLOJURESCRIPT_HOME}/${next}"

script/test

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ 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 :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;
1215

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

script/test-self-host

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
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 :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;
811

912
echo "Testing with Node"
1013
node builds/out-self/core-self-test.js

script/test-self-parity

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ mkdir -p builds/out-self-parity/clojure/test
1515
mv clojure/template.clj builds/out-self-parity/clojure
1616
mv clojure/test builds/out-self-parity/clojure
1717

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;
1922

2023
echo "Testing with Node"
2124
node builds/out-self-parity/main.js

script/test-simple

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ possible=4
88
ran=0
99

1010
#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;
1215

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

0 commit comments

Comments
 (0)