diff options
-rw-r--r-- | test/cairo-test.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/cairo-test.c b/test/cairo-test.c index 7e93410f..55e28dc7 100644 --- a/test/cairo-test.c +++ b/test/cairo-test.c @@ -1005,13 +1005,6 @@ REPEAT: goto UNWIND_CAIRO; } - if (cairo_status (cr) != CAIRO_STATUS_SUCCESS) { - cairo_test_log (ctx, "Error: Function under test left cairo status in an error state: %s\n", - cairo_status_to_string (cairo_status (cr))); - ret = CAIRO_TEST_FAILURE; - goto UNWIND_CAIRO; - } - #if HAVE_MEMFAULT if (MEMFAULT_COUNT_FAULTS () - last_fault_count > 0 && MEMFAULT_HAS_FAULTS ()) @@ -1380,6 +1373,13 @@ REPEAT: cairo_surface_destroy (diff_image); } + if (cairo_status (cr) != CAIRO_STATUS_SUCCESS) { + cairo_test_log (ctx, "Error: Function under test left cairo status in an error state: %s\n", + cairo_status_to_string (cairo_status (cr))); + ret = CAIRO_TEST_FAILURE; + goto UNWIND_CAIRO; + } + UNWIND_CAIRO: if (test_filename != NULL) { free (test_filename); |