summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorKalev Lember <kalevlember@gmail.com>2014-05-20 14:30:29 +0200
committerBastien Nocera <hadess@hadess.net>2014-05-30 11:03:24 +0200
commit08406dc293a24fe90340cc79865a27ac8dd25777 (patch)
treea99bd40108671bb524a79ceae42691ab2b063d3f /m4
parent7eb66fe1401ffac2264795dba1470958b5b443e3 (diff)
downloadgnome-desktop-08406dc293a24fe90340cc79865a27ac8dd25777.tar.gz
Add testsuite skeleton
https://bugzilla.gnome.org/show_bug.cgi?id=730447
Diffstat (limited to 'm4')
-rw-r--r--m4/glibtests.m428
1 files changed, 28 insertions, 0 deletions
diff --git a/m4/glibtests.m4 b/m4/glibtests.m4
new file mode 100644
index 00000000..7d5920a4
--- /dev/null
+++ b/m4/glibtests.m4
@@ -0,0 +1,28 @@
+dnl GLIB_TESTS
+dnl
+
+AC_DEFUN([GLIB_TESTS],
+[
+ AC_ARG_ENABLE(installed-tests,
+ AS_HELP_STRING([--enable-installed-tests],
+ [Enable installation of some test cases]),
+ [case ${enableval} in
+ yes) ENABLE_INSTALLED_TESTS="1" ;;
+ no) ENABLE_INSTALLED_TESTS="" ;;
+ *) AC_MSG_ERROR([bad value ${enableval} for --enable-installed-tests]) ;;
+ esac])
+ AM_CONDITIONAL([ENABLE_INSTALLED_TESTS], test "$ENABLE_INSTALLED_TESTS" = "1")
+ AC_ARG_ENABLE(always-build-tests,
+ AS_HELP_STRING([--enable-always-build-tests],
+ [Enable always building tests during 'make all']),
+ [case ${enableval} in
+ yes) ENABLE_ALWAYS_BUILD_TESTS="1" ;;
+ no) ENABLE_ALWAYS_BUILD_TESTS="" ;;
+ *) AC_MSG_ERROR([bad value ${enableval} for --enable-always-build-tests]) ;;
+ esac])
+ AM_CONDITIONAL([ENABLE_ALWAYS_BUILD_TESTS], test "$ENABLE_ALWAYS_BUILD_TESTS" = "1")
+ if test "$ENABLE_INSTALLED_TESTS" = "1"; then
+ AC_SUBST(installed_test_metadir, [${datadir}/installed-tests/]AC_PACKAGE_NAME)
+ AC_SUBST(installed_testdir, [${libexecdir}/installed-tests/]AC_PACKAGE_NAME)
+ fi
+])