From a10b0c93eb5d32ab8ba1301c26bde2d98b556a29 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Wed, 7 Jul 2021 23:56:47 +0100 Subject: 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. --- test cases/frameworks/16 sdl2/test.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test cases/frameworks') diff --git a/test cases/frameworks/16 sdl2/test.json b/test cases/frameworks/16 sdl2/test.json index 664dc84..1aeaf34 100644 --- a/test cases/frameworks/16 sdl2/test.json +++ b/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"] } ] } } -- cgit v1.1