test-cogl-sub-texture: Allow single-bit rendering error
authorAdam Jackson <ajax@redhat.com>
Mon, 2 May 2011 16:15:28 +0000 (12:15 -0400)
committerEmmanuele Bassi <ebassi@linux.intel.com>
Sat, 14 May 2011 00:12:44 +0000 (01:12 +0100)
Signed-off-by: Adam Jackson <ajax@redhat.com>
http://bugzilla.clutter-project.org/show_bug.cgi?id=2640

tests/conform/test-cogl-sub-texture.c

index b876a68..6cbafbf 100644 (file)
@@ -2,6 +2,7 @@
 #include <clutter/clutter.h>
 #include <cogl/cogl.h>
 #include <string.h>
+#include <stdlib.h>
 
 #include "test-conform-common.h"
 
@@ -226,8 +227,8 @@ validate_result (TestState *state)
   for (y = 0; y < 10; y++)
     for (x = 0; x < 10; x++)
       {
-        g_assert (*(p++) == x + 40);
-        g_assert (*(p++) == y + 20);
+        g_assert_cmpint (abs(*(p++) - (x + 40)), <=, 1);
+        g_assert_cmpint (abs(*(p++) - (y + 20)), <=, 1);
         p += 2;
       }
   g_free (texture_data);