From a14f98ca7ccdfc74b5f58a9dca234abefdd09f0d Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Wed, 19 Feb 2014 19:14:13 +0100 Subject: [PATCH] Make sure that fork_test.c is not built under windows --- utest/test_fork.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utest/test_fork.c b/utest/test_fork.c index 7b68eca6b..1d8804ac6 100644 --- a/utest/test_fork.c +++ b/utest/test_fork.c @@ -30,6 +30,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **********************************************************************************/ +#ifndef OS_WINDOWS #include "common_utest.h" #include #include @@ -56,7 +57,6 @@ void check_dgemm(double *a, double *b, double *result, double *expected, int n) } } - void test_fork_safety(void) { int n = 1000; @@ -120,3 +120,4 @@ void test_fork_safety(void) CU_ASSERT(WEXITSTATUS (child_status) == 0); } } +#endif \ No newline at end of file