فهرست منبع

Remove test from BSD.

Бранимир Караџић 2 سال پیش
والد
کامیت
8153ff35ae
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      tests/math_test.cpp

+ 2 - 0
tests/math_test.cpp

@@ -11,6 +11,7 @@
 #include <stdint.h> // intXX_t
 #include <limits.h> // UCHAR_*
 
+#if !BX_PLATFORM_BSD
 TEST_CASE("isFinite, isInfinite, isNan", "[math]")
 {
 	for (uint64_t ii = 0; ii < UINT32_MAX; ii += rand()%(1<<13)+1)
@@ -33,6 +34,7 @@ TEST_CASE("isFinite, isInfinite, isNan", "[math]")
 #endif // BX_PLATFORM_OSX
 	}
 }
+#endif // !BX_PLATFORM_BSD
 
 bool log2_test(float _a)
 {