diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2020-02-18 16:59:52 +0100 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2020-02-18 17:14:14 +0100 |
commit | a29c3ff9d2d695bc525c15e33bcdeebf6ff4ccbf (patch) | |
tree | 9a7afefaedbf2655929b4793871e314626146712 /tests | |
parent | a0bb129e5a2e8580eb272d9a68ba054e7b170dba (diff) | |
download | vala-a29c3ff9d2d695bc525c15e33bcdeebf6ff4ccbf.tar.gz |
testrunner: Pass G_DEBUG=fatal-warnings to invalid test
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/testrunner.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testrunner.sh b/tests/testrunner.sh index bb061af86..d1cc5c78c 100755 --- a/tests/testrunner.sh +++ b/tests/testrunner.sh @@ -116,7 +116,7 @@ function sourceend() { if [ $INVALIDCODE -eq 1 ]; then PACKAGEFLAGS=$([ -z "$PACKAGES" ] || echo $PACKAGES | xargs -n 1 echo -n " --pkg") echo '' > prepare - echo "$VALAC $VALAFLAGS $PACKAGEFLAGS -C $SOURCEFILE" > check + echo "G_DEBUG=fatal-warnings $VALAC $VALAFLAGS $PACKAGEFLAGS -C $SOURCEFILE" > check echo "RET=\$?" >> check echo "if [ \$RET -ne 1 ]; then exit 1; fi" >> check echo "exit 0" >> check |