1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/bin/sh
# SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
# SPDX-FileCopyrightText: 2018 Philip Chimento <philip.chimento@gmail.com>
stringContain() { case $2 in *$1* ) return 0;; *) return 1;; esac ;}
if test "$GJS_USE_UNINSTALLED_FILES" = "1"; then
gjs="$TOP_BUILDDIR/gjs-console"
else
gjs="gjs-console"
fi
echo 1..1
DEBUGGER_SCRIPT="$1"
JS_SCRIPT="$1.js"
EXPECTED_OUTPUT="$1.output"
if stringContain "module" "$JS_SCRIPT" ; then
# module specifiers are canonicalized into absolute paths
THE_DIFF=$("$gjs" -d -m "$JS_SCRIPT" < "$DEBUGGER_SCRIPT" | sed \
-e "s#file://$(realpath "$1")#$(basename "$1")#g" \
-e "s/file:\/\/.*sourcemap-number-module.js/sourcemap-number-module.js/g" \
-e "s/0x[0-9a-f]\{4,16\}/0xADDR/g" \
-e "s/[0-9][0-9.]* ms/XXXX ms/g" \
| diff -u "$EXPECTED_OUTPUT" -)
else
THE_DIFF=$("$gjs" -d "$JS_SCRIPT" < "$DEBUGGER_SCRIPT" | sed \
-e "s#$1#$(basename "$1")#g" \
-e "s/0x[0-9a-f]\{4,16\}/0xADDR/g" \
-e "s/[0-9][0-9.]* ms/XXXX ms/g" \
| diff -u "$EXPECTED_OUTPUT" -)
fi
EXITCODE=$?
if test -n "$THE_DIFF"; then
echo "not ok 1 - $1"
echo "$THE_DIFF" | while read -r line; do echo "#$line"; done
else
if test $EXITCODE -ne 0; then
echo "not ok 1 - $1 # command failed"
exit 1
fi
echo "ok 1 - $1"
fi
|