Browse Source

Trying to identify test failure on the test systems

Christophe Riccio 8 years ago
parent
commit
1dda4f5014
1 changed files with 4 additions and 4 deletions
  1. 4 4
      test/gtc/gtc_type_precision.cpp

+ 4 - 4
test/gtc/gtc_type_precision.cpp

@@ -875,10 +875,6 @@ int main()
 {
 	int Error = 0;
 
-#	if GLM_HAS_OPENMP
-		Error += test_openmp();
-#	endif//
-
 	Error += test_scalar_size();
 	Error += test_fvec_size();
 
@@ -897,5 +893,9 @@ int main()
 	Error += test_quat_size();
 	Error += test_quat_precision();
 
+#	if GLM_HAS_OPENMP
+		Error += test_openmp();
+#	endif//
+
 	return Error;
 }