]> www.ginac.de Git - cln.git/blobdiff - tests/test_I_GV.cc
[BUGFIX]: cl_asm_.cc: fix include paths.
[cln.git] / tests / test_I_GV.cc
index cfb31851d15b1c8c7855df4bf8b868a160378079..6ee037dab35ada371ca9bf2b22e51b2135fa0544 100644 (file)
@@ -1,5 +1,5 @@
 #include "test_I.h"
-#include "cl_GV_integer.h"
+#include "cln/GV_integer.h"
 
 int test_I_GV (int iterations)
 {
@@ -15,11 +15,7 @@ int test_I_GV (int iterations)
                for (j = 0; j < len; j++)
                        v[j] = mod(a*(j*j),M);
                for (j = len-1; j >= 0; j--)
-#if !(defined(__GNUC__) && (__GNUC_MINOR__ < 8))
                        ASSERT4(v[j] == mod(a*(j*j),M), m,len,M,j);
-#else // work around g++ 2.7.2 bug
-                       ASSERT4(v[j] == mod(a*(j*j),M), (cl_I)m,(cl_I)len,M,(cl_I)j);
-#endif
        }
        return error;
 }