perf: Fix typo in backend blackballing so that image tests now run

This commit is contained in:
Carl Worth 2006-08-31 11:53:16 -07:00
parent 0c741675e1
commit 7917e1201f

View file

@ -50,8 +50,8 @@ target_is_measurable (cairo_test_target_t *target)
{
switch (target->expected_type) {
case CAIRO_SURFACE_TYPE_IMAGE:
if (strcmp (target->name, "pdf") ||
strcmp (target->name, "ps"))
if (strcmp (target->name, "pdf") == 0 ||
strcmp (target->name, "ps") == 0)
{
return FALSE;
}