mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-27 23:18:13 +02:00
perf: Fix typo in backend blackballing so that image tests now run
This commit is contained in:
parent
0c741675e1
commit
7917e1201f
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue