diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8c5b64a9..0b32388f 100644 --- a/configure.ac +++ b/configure.ac @@ -46,6 +46,7 @@ AC_DEFINE_UNQUOTED([ARCH], [$arch], [arch]) m4_define([ENABLE_TEST_MODULE], [AS_CASE(["$enable_test_module"], [llsync_defer], [test_llsync_defer=yes], + [mutex_pi], [test_mutex_pi=yes], [pmap_update_mp], [test_pmap_update_mp=yes], [sref_dirty_zeroes], [test_sref_dirty_zeroes=yes], [sref_noref], [test_sref_noref=yes], @@ -61,6 +62,8 @@ m4_define([ENABLE_TEST_MODULE], AS_IF([test x"$enable_test_module" != xno], [ENABLE_TEST_MODULE]) AM_CONDITIONAL([TEST_LLSYNC_DEFER], [test x"$test_llsync_defer" = xyes]) +AM_CONDITIONAL([TEST_MUTEX_PI], + [test x"$test_mutex_pi" = xyes]) AM_CONDITIONAL([TEST_PMAP_UPDATE_MP], [test x"$test_pmap_update_mp" = xyes]) AM_CONDITIONAL([TEST_SREF_DIRTY_ZEROES], |