Fix skip condition in sdl2 test.json

The build_machine.system() value we should be matching against is
'darwin', not 'macos', so this was expected to skip everywhere.

Unfortunately, fixing this reveals that this test skips in our macos CI
runs also, (I think) because brew doesn't (normally) provide frameworks,
just pkgconfig files.

So, also skip this test there, which means it doesn't run anywhere in
CI currently.
pull/9005/head
Jon Turney 3 years ago
parent 317f9555a7
commit a10b0c93eb
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
  1. 2
      test cases/frameworks/16 sdl2/test.json

@ -6,7 +6,7 @@
{ "val": "pkg-config" },
{ "val": "config-tool" },
{ "val": "sdlconfig" },
{ "val": "extraframework", "skip_on_os": ["!macos"] }
{ "val": "extraframework", "skip_on_os": ["!darwin"], "skip_on_jobname": ["macos"] }
]
}
}

Loading…
Cancel
Save