From 1dda4f5014322a0d375ebf78e00f705d53643b79 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Fri, 11 Aug 2017 02:02:01 +0200 Subject: [PATCH] Trying to identify test failure on the test systems --- test/gtc/gtc_type_precision.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/gtc/gtc_type_precision.cpp b/test/gtc/gtc_type_precision.cpp index 4fb2967d..5028d366 100644 --- a/test/gtc/gtc_type_precision.cpp +++ b/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; }