Browse Source

AppVeyor/MinGW: Try to debug CI build

bel 8 years ago
parent
commit
92302a3400
1 changed files with 19 additions and 18 deletions
  1. 19 18
      test/timertest.c

+ 19 - 18
test/timertest.c

@@ -114,6 +114,16 @@ START_TEST(test_timer_cyclic)
 	mark_point();
 	mg_sleep(100);
 
+#if defined(__MINGW32__)
+	mg_sleep(10000);
+    /* Try to find "***Exception: SegFault" that occurs only with MinGW builds 
+     * on AppVeyor/Windows, not with gcc/Linux and not MinGW/local.
+    https://ci.appveyor.com/project/civetweb/civetweb/build/job/epsqi8perbca1jd6
+    https://github.com/civetweb/civetweb/issues/366#issuecomment-269383810
+    */
+    ck_abort_msg("Abort test_timer_cyclic here (instead of SegFault)");
+#endif
+
 #ifdef LOCAL_TEST
 	/* If performed locally (on a physical machine that's not overloaded),
 	 * timing will be precise to the ~100 ms required here. */
@@ -131,16 +141,6 @@ START_TEST(test_timer_cyclic)
 	ck_assert_int_ge(c[2], -1);
 	ck_assert_int_le(c[2], +1);
 #endif
-
-#if defined(__MINGW32__)
-	mg_sleep(10000);
-    /* Try to find "***Exception: SegFault" that occurs only with MinGW builds 
-     * on AppVeyor/Windows, not with gcc/Linux and not MinGW/local.
-    https://ci.appveyor.com/project/civetweb/civetweb/build/job/epsqi8perbca1jd6
-    https://github.com/civetweb/civetweb/issues/366#issuecomment-269383810
-    */
-    ck_abort_msg("Abort test_timer_cyclic here (instead of SegFault)");
-#endif
 }
 END_TEST
 
@@ -296,15 +296,8 @@ START_TEST(test_timer_mixed)
 	mark_point();
 	mg_sleep(100);
 
-	ck_assert_int_eq(c[0], 2);
-	ck_assert_int_eq(c[1], 0);
-	ck_assert_int_eq(c[2], 1);
-	ck_assert_int_eq(c[3], 2);
-	ck_assert_int_eq(c[4], 3);
-	ck_assert_int_eq(c[5], 2);
-	ck_assert_int_eq(c[6], 1);
-
 #if defined(__MINGW32__)
+    mg_sleep(1000);
     /* Try to find "***Exception: SegFault" that occurs only with MinGW builds 
      * on AppVeyor/Windows, not with gcc/Linux and not MinGW/local.
     https://ci.appveyor.com/project/civetweb/civetweb/build/job/epsqi8perbca1jd6
@@ -312,6 +305,14 @@ START_TEST(test_timer_mixed)
     */
     ck_abort_msg("Abort test_timer_mixed here (instead of SegFault)");
 #endif
+
+	ck_assert_int_eq(c[0], 2);
+	ck_assert_int_eq(c[1], 0);
+	ck_assert_int_eq(c[2], 1);
+	ck_assert_int_eq(c[3], 2);
+	ck_assert_int_eq(c[4], 3);
+	ck_assert_int_eq(c[5], 2);
+	ck_assert_int_eq(c[6], 1);
 }
 END_TEST