summaryrefslogtreecommitdiff
path: root/tests/warn/warntestrunner
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-02-19 17:56:32 -0500
committerColin Walters <walters@verbum.org>2013-02-19 17:56:32 -0500
commit3e976212bfd34a675632c5a0aecc9f8070df8098 (patch)
tree7f5ed9d0249c6e26afe0dcfec6e7ee03de0e6be4 /tests/warn/warntestrunner
parent81c65f22e124c7aa53686519776714c8fdbf8bc2 (diff)
downloadgobject-introspection-3e976212bfd34a675632c5a0aecc9f8070df8098.tar.gz
tests: Be compatible with Automake 1.11, 1.12 and 1.13, and the future, hopefully
Automake only sees it as one test now, but eh, who cares. https://bugzilla.gnome.org/show_bug.cgi?id=694198
Diffstat (limited to 'tests/warn/warntestrunner')
-rwxr-xr-xtests/warn/warntestrunner8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/warn/warntestrunner b/tests/warn/warntestrunner
new file mode 100755
index 00000000..3deb3814
--- /dev/null
+++ b/tests/warn/warntestrunner
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+
+set -e
+
+for testname in ${alltests}; do
+ echo "Running warning test:" $testname
+ $PYTHON $srcdir/warningtester.py "$testname"
+done