summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@redhat.com>2009-07-09 04:04:00 -0400
committerSøren Sandmann Pedersen <sandmann@redhat.com>2009-07-09 04:04:00 -0400
commit6b34482870fd53a9285f795f47656ac73fd706b0 (patch)
treecf85677af7161b2c428fbfc10ce57e4b6e6672a4 /test
parent4c60ed5ec662e2d7088a7800dd7c71d3926c42a4 (diff)
Update the CRC value in scaling-test.c.
The changes in pixman behavior justifying this are: - New clipping rules - Bug fixes in region code. In particular, when pixman_region_init_rects() is called on these two boxes: { 2, 6, 7, 6 } { 4, 1, 6, 7 } it now ignores the first one, which is empty and produces { 4, 1, 6, 7 } Previously, it would produce: { 2, 1, 7, 7 } for some reason.
Diffstat (limited to 'test')
-rw-r--r--test/scaling-test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/scaling-test.c b/test/scaling-test.c
index c85908d..1919d5f 100644
--- a/test/scaling-test.c
+++ b/test/scaling-test.c
@@ -329,7 +329,8 @@ int main(int argc, char *argv[])
if (n == 3000000) {
/* predefined value for running with all the fastpath functions disabled */
/* it needs to be updated every time changes are introduced to this program! */
- if (crc == 0xC950E5BB) {
+
+ if (crc == 0x0B633CF4) {
printf("scaling test passed\n");
} else {
printf("scaling test failed!\n");