Browse Source

Trying to figure out what cause the GCC 32bit fail

Christophe Riccio 9 years ago
parent
commit
c4666ea14c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      test/gtc/gtc_packing.cpp

+ 3 - 3
test/gtc/gtc_packing.cpp

@@ -685,19 +685,19 @@ int main()
 	Error += test_packUnorm1x5_1x6_1x5();
 	Error += test_packUnorm1x5_1x6_1x5();
 	Error += test_packUnorm2x3_1x2();
 	Error += test_packUnorm2x3_1x2();
 
 
+// It looks like GLM has a but that travis CI shows in this configuration #577
+#if !((GLM_ARCH == GLM_ARCH_PURE) && (GLM_COMPILER & GLM_COMPILER_GCC))
 	Error += test_F2x11_1x10();
 	Error += test_F2x11_1x10();
 	Error += test_F3x9_E1x5();
 	Error += test_F3x9_E1x5();
+#endif
 	Error += test_RGBM();
 	Error += test_RGBM();
 	Error += test_Snorm3x10_1x2();
 	Error += test_Snorm3x10_1x2();
 	Error += test_Unorm3x10_1x2();
 	Error += test_Unorm3x10_1x2();
 
 
-// It looks like GLM has a but that travis CI shows in this configuration #577
-#if !((GLM_ARCH == GLM_ARCH_PURE) && (GLM_COMPILER & GLM_COMPILER_GCC))
 	Error += test_I3x10_1x2();
 	Error += test_I3x10_1x2();
 	Error += test_U3x10_1x2();
 	Error += test_U3x10_1x2();
 	Error += test_Half1x16();
 	Error += test_Half1x16();
 	Error += test_Half4x16();
 	Error += test_Half4x16();
-#endif
 
 
 	return Error;
 	return Error;
 }
 }