glyph-test: Prepare for floating point
authorSøren Sandmann Pedersen <ssp@redhat.com>
Wed, 11 Jul 2012 07:27:49 +0000 (03:27 -0400)
committerSøren Sandmann Pedersen <ssp@redhat.com>
Mon, 1 Oct 2012 16:56:09 +0000 (12:56 -0400)
In preparation for an upcoming change of the wide pipe to use floating
point, comment out some formats in glyph-test that are going to be
using floating point and update the CRC32 value to match.

test/glyph-test.c

index 84de5aa..9dd5b41 100644 (file)
@@ -30,10 +30,13 @@ static const pixman_format_code_t formats[] =
     PIXMAN_x14r6g6b6,
     PIXMAN_r8g8b8,
     PIXMAN_b8g8r8,
+#if 0
+    /* These use floating point */
     PIXMAN_x2r10g10b10,
     PIXMAN_a2r10g10b10,
     PIXMAN_x2b10g10r10,
     PIXMAN_a2b10g10r10,
+#endif
     PIXMAN_a1r5g5b5,
     PIXMAN_x1r5g5b5,
     PIXMAN_a1b5g5r5,
@@ -329,7 +332,7 @@ test_glyphs (int testnum, int verbose)
 int
 main (int argc, const char *argv[])
 {
-    return fuzzer_test_main ("glyph", 30000,
-                            0x741CB2DB,
+    return fuzzer_test_main ("glyph", 30000,   
+                            0x79E74996,
                             test_glyphs, argc, argv);
 }