summaryrefslogtreecommitdiff
path: root/tests/roundtrips.sh
diff options
context:
space:
mode:
authorColin Walters <walters@src.gnome.org>2008-08-07 02:33:33 +0000
committerColin Walters <walters@src.gnome.org>2008-08-07 02:33:33 +0000
commita5050a2fab81b69a15c18a22efff794f05b31aa0 (patch)
treec29b966709e03c40e2976dff7551198241a6f174 /tests/roundtrips.sh
parentaa3b4123fac4ab39664006ba35835c62b79694e6 (diff)
downloadgobject-introspection-a5050a2fab81b69a15c18a22efff794f05b31aa0.tar.gz
Extend states, display line numbers, print backtrace, better type handling
svn path=/branches/gir-compiler/; revision=306
Diffstat (limited to 'tests/roundtrips.sh')
-rwxr-xr-xtests/roundtrips.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/roundtrips.sh b/tests/roundtrips.sh
index fb3f049d..9cf8e77f 100755
--- a/tests/roundtrips.sh
+++ b/tests/roundtrips.sh
@@ -6,8 +6,8 @@ set -e
TESTFILES=$(echo "${srcdir}"/../../gir-repository/gir/*.gir)
for i in $TESTFILES; do
- ../tools/g-ir-compiler --raw $i > $i.1;
- ../tools/g-ir-generate --raw $i.1 > $i.2;
+ ${CHECK_DEBUG} ../tools/g-ir-compiler --raw $i > $i.1;
+ ${CHECK_DEBUG} ../tools/g-ir-generate --raw $i.1 > $i.2;
diff -u $srcdir/$i $i.2 || exit 1;
rm $i.1 $i.2
done