mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
Rearrange into other veriables, and include run-markup-tests.sh.
* tests/Makefile.am (TESTS): Rearrange into other veriables, and include run-markup-tests.sh. (TESTS_ENVIRONMENT): New. Pass $srcdir to tests. (noinst_PROGRAMS): Rename to ... (check_PROGRAMS): ... this. 'automake' ensures that these are built before running the tests. * tests/run-markup-tests.sh: Support $srcdir != $builddir.
This commit is contained in:
@@ -6,14 +6,14 @@ fail ()
|
||||
exit 1
|
||||
}
|
||||
|
||||
for I in markups/fail-*.gmarkup; do
|
||||
for I in $srcdir/markups/fail-*.gmarkup; do
|
||||
echo "Parsing $I, should fail"
|
||||
./markup-test $I > /dev/null && fail "failed to generate error on $I"
|
||||
done
|
||||
|
||||
for I in markups/valid-*.gmarkup; do
|
||||
for I in $srcdir/markups/valid-*.gmarkup; do
|
||||
echo "Parsing $I, should succeed"
|
||||
./markup-test $I > /dev/null || fail "failed on $I"
|
||||
done
|
||||
|
||||
echo "All tests passed."
|
||||
echo "All tests passed."
|
||||
|
Reference in New Issue
Block a user