mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
335 B
22 lines
335 B
#!/bin/sh
|
|
|
|
if [ "$1" = "valgrind" ]; then
|
|
VALGRIND=1
|
|
CMD=$2
|
|
TEST=$3
|
|
else
|
|
VALGRIND=0
|
|
CMD=$1
|
|
TEST=$2
|
|
fi
|
|
|
|
cat underscore-test-shim.js \
|
|
underscore/underscore.js \
|
|
$TEST \
|
|
> /tmp/duk-underscore-test.js
|
|
|
|
if [ x"$VALGRIND" = "x1" ]; then
|
|
valgrind $CMD /tmp/duk-underscore-test.js
|
|
else
|
|
$CMD /tmp/duk-underscore-test.js
|
|
fi
|
|
|