From: Sven M. Hallberg Date: Thu, 4 Sep 2014 18:46:21 +0000 (+0200) Subject: do not build dns-spin-test on Windows (for the time being) X-Git-Url: http://git.meshlink.io/?p=catta;a=commitdiff_plain;h=b6050fbda57890692eafb926d3794e8723e8de26 do not build dns-spin-test on Windows (for the time being) --- diff --git a/tests/Makefile.am b/tests/Makefile.am index 8cd35c3..5b14465 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -35,16 +35,20 @@ noinst_PROGRAMS = \ conformance-test \ catta-reflector \ dns-test \ - dns-spin-test \ timeeventq-test \ hashmap-test \ querier-test \ update-test TESTS = \ - dns-spin-test \ dns-test \ hashmap-test + +# disable the dns-spin-test on Windows (needs setitimer) +if !WINDOWS +noinst_PROGRAMS += dns-spin-test +TESTS += dns-spin-test +endif endif