From fbcbd58c30902d511e80b7055f49c62af4cde848 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Mon, 30 Oct 2017 17:56:04 -0500 Subject: [PATCH] libCom/test: Disable yajlTest on WIN32 Works OK on Cygwin; Perl's IPC::Open3 is likely the problem. --- src/libCom/test/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libCom/test/Makefile b/src/libCom/test/Makefile index 27e5a536e..e7c2dd982 100755 --- a/src/libCom/test/Makefile +++ b/src/libCom/test/Makefile @@ -212,10 +212,12 @@ osiSockTest_SRCS += osiSockTest.c testHarness_SRCS += osiSockTest.c TESTS += osiSockTest +ifneq ($(OS_CLASS),$(WIN32)) +# This test can only be run on a build host, and is broken on Windows TESTPROD_HOST += yajl_test yajl_test_SRCS += yajl_test.c -# Can only be run on the build host TESTS += yajlTest +endif # The testHarness runs all the test programs in a known working order. testHarness_SRCS += epicsRunLibComTests.c