ladybird/Libraries/LibJS/Tests/run-tests
Brian Gianforcaro bc40908d32 LibJS: Use the native assert() implementation now avaiable in 'js -t'
Switch the LibJS test suite to use the native assert implementation
surfaced inside the js repl when it's launched in test mode.
2020-04-05 15:28:45 +02:00

42 lines
870 B
Bash
Executable file

#!/bin/bash
if [ "`uname`" = "SerenityOS" ]; then
js_program=/bin/js
else
[ -z "$js_program" ] && js_program="$SERENITY_ROOT/Meta/Lagom/build/js"
# Enable back traces if sanitizers are enabled
export UBSAN_OPTIONS=print_stacktrace=1
fi
pass_count=0
fail_count=0
count=0
for f in *.js; do
result=`$js_program -t $f`
if [ "$result" = "PASS" ]; then
let pass_count++
echo -ne "( \033[32;1mPass\033[0m ) "
else
echo -ne "( \033[31;1mFail\033[0m ) "
let fail_count++
fi
echo $f
let count++
done
pass_color=""
fail_color=""
color_off="\033[0m"
if [ $pass_count -gt 0 ]; then
pass_color="\033[32;1m"
fi
if [ $fail_count -gt 0 ]; then
fail_color="\033[31;1m"
fi
echo
echo -e "Ran $count tests. Passed: ${pass_color}${pass_count}${color_off}, Failed: ${fail_color}${fail_count}${color_off}"