summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPhilip Chimento <philip@endlessm.com>2013-06-18 08:50:05 -0700
committerPhilip Chimento <philip@endlessm.com>2013-06-18 08:50:05 -0700
commit52fcc7f04a95e319823c154a1b2e2b90acbb6396 (patch)
tree7e04e02b73644fd141b1f8e754be60e60ee8e90e /configure.ac
parent580a41606a4c5cd2465222080a560587dc1d460d (diff)
Specify old-style serial test runner
Our tests break on the new-style parallel test runner, which is the default in newer versions of Automake. [endlessm/eos-sdk#121]
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 49c3a40..94d7969 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,7 +37,8 @@ dnl AC_CONFIG_SRCDIR([src/hello.c])
# Initialize Automake: enable all warnings and do not insist on GNU standards
# Automake >= 1.11 required for silent rules
# no-portability suppresses warnings about syntax specific to GNU make
-AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign 1.11])
+# serial-tests uses the old-style test suite
+AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign 1.11 serial-tests])
# Avoid spewing garbage over the terminal ('make V=1' to see the garbage)
AM_SILENT_RULES([yes])
# Initialize Libtool; don't build static libraries