summaryrefslogtreecommitdiff
path: root/Makefile.decl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-09-30 14:46:45 +0000
committerTor Lillqvist <tml@src.gnome.org>2008-09-30 14:46:45 +0000
commit23a4ae82e5088fd12e951d0c41efa5ab2d206624 (patch)
tree12bc35c080a6c82432d67c931a5f927ad8ff6b92 /Makefile.decl
parentb1557680dd3f8531883bb768cd7438632c67bffe (diff)
downloadglib-23a4ae82e5088fd12e951d0c41efa5ab2d206624.tar.gz
Makefile.decl Bypass gtester related stuff on Windows.
2008-09-30 Tor Lillqvist <tml@novell.com> * Makefile.decl * glib/tests/Makefile.am: Bypass gtester related stuff on Windows. svn path=/trunk/; revision=7564
Diffstat (limited to 'Makefile.decl')
-rw-r--r--Makefile.decl3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.decl b/Makefile.decl
index e7ca0d056..cbc0da121 100644
--- a/Makefile.decl
+++ b/Makefile.decl
@@ -12,11 +12,14 @@ TEST_PROGS =
# test: run all tests in cwd and subdirs
test: ${TEST_PROGS}
+if OS_UNIX
@test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
@ for subdir in $(SUBDIRS) . ; do \
test "$$subdir" = "." -o "$$subdir" = "po" || \
( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
done
+endif
+
# test-report: run tests in subdirs and generate report
# perf-report: run tests in subdirs with -m perf and generate report
# full-report: like test-report: with -m perf and -m slow