8b56215cc2
- change error message for `Object.create` invalid property descriptor - disable v8 test cases for deprecated legacy RegExp static properties and invalid left hand side error type - update v8.txt - fix v8.sh behavior for single tests
10 lines
183 B
Bash
Executable file
10 lines
183 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
: ${QJS:=build/qjs}
|
|
if [ "x" = "x$1" ] ; then
|
|
"$QJS" v8.js $* 2>&1 | tee v8.txt$$
|
|
diff -uw v8.txt v8.txt$$ || exit 1
|
|
rm v8.txt$$
|
|
else
|
|
"$QJS" v8.js $* 2>&1
|
|
fi
|