From ad91c3d008696446ba934d7d44e5920312b67fe7 Mon Sep 17 00:00:00 2001 From: est31 Date: Mon, 4 Jul 2016 21:32:32 +0200 Subject: [PATCH] Temporarily disable "testStartStopWait" Threading unit test on mac The "testStartStopWait" unit test is unreliably failing on mac, for some time already. See bug #3786. Having the unittest fail unreliably doesn't help anybody but mostly inhibits the main feature of travis builds: to test PRs for regressions. Therefore, disable the specific unit test for until bug #3786 is fixed. --- src/unittest/test_threading.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/unittest/test_threading.cpp b/src/unittest/test_threading.cpp index f0df85b2d..224e123df 100644 --- a/src/unittest/test_threading.cpp +++ b/src/unittest/test_threading.cpp @@ -39,7 +39,9 @@ static TestThreading g_test_instance; void TestThreading::runTests(IGameDef *gamedef) { +#if !(defined(__MACH__) && defined(__APPLE__)) TEST(testStartStopWait); +#endif TEST(testThreadKill); TEST(testAtomicSemaphoreThread); }