From 8c294c1cd4d721818a59684cf7f2b36123f79163 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 18 Mar 2013 10:39:50 -0400 Subject: BUILD: Always run distcheck and RPM tests in /dev/shm Some of the tests (such as the sysdb tests) are highly I/O limited. By running them on a ramdisk, we can significantly speed up the test runs when doing a distcheck or RPM build. https://fedorahosted.org/sssd/ticket/1840 --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 4b1cfba26..3533502d1 100644 --- a/configure.ac +++ b/configure.ac @@ -272,6 +272,8 @@ AM_CONDITIONAL([HAVE_DOXYGEN], [test x$DOXYGEN != xfalse ]) AM_CONDITIONAL([HAVE_CHECK], [test x$have_check != x]) AM_CONDITIONAL([HAVE_CMOCKA], [test x$have_cmocka = xyes]) +AM_CONDITIONAL([HAVE_DEVSHM], [test -d /dev/shm]) + abs_build_dir=`pwd` AC_DEFINE_UNQUOTED([ABS_BUILD_DIR], ["$abs_build_dir"], [Absolute path to the build directory]) AC_SUBST([abs_builddir], $abs_build_dir) -- cgit