summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mack <daniel@caiaq.de>2011-09-29 13:25:12 +0200
committerArun Raghavan <arun.raghavan@collabora.co.uk>2011-10-08 15:15:49 +0530
commit37e76bd36faa5164c069c80a6b90f6161ccb2abb (patch)
tree471b26a3eb061f012832861a427ed1fa44394881
parent411af6b61aa564907d65fad1893383a4eb0a4933 (diff)
osx: don't build the once-test binary on OS X
This patch was already added earlier with commit ID 2f86ba4f, but the changes got reverted by commit 3adc43b ("win32: Make once-test work"). However, this still doesn't work on OSX as here, pthread is in general available, but the barrier APIs aren't.
-rw-r--r--src/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 7f547cd5..fdb2e99a 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -244,7 +244,6 @@ TESTS = \
TESTS_norun = \
mcalign-test \
- once-test \
pacat-simple \
parec-simple \
extended-test \
@@ -262,6 +261,11 @@ TESTS += \
usergroup-test
endif
+if !OS_IS_DARWIN
+TESTS_norun += \
+ once-test
+endif
+
if HAVE_SIGXCPU
TESTS_norun += \
cpulimit-test \