Skip to content

Commit

Permalink
* script/test: add test script
Browse files Browse the repository at this point in the history
  • Loading branch information
David Nolen authored and David Nolen committed Mar 23, 2012
1 parent 621a1a7 commit d92cfdd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions script/test
@@ -0,0 +1,13 @@
rm -rf out
mkdir -p out

cljsc src/test/cljs > out/core-test.js

if [ "$V8_HOME" == "" ]; then
echo "V8_HOME not set, skipping V8 tests"
else
echo "Testing with V8"
${V8_HOME}/d8 out/core-advanced-test.js
# TODO: figure out path problem when not in advanced mode
# ${V8_HOME}/d8 out/core-test.js
fi

0 comments on commit d92cfdd

Please sign in to comment.