diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2021-06-22 23:21:19 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2021-06-24 17:07:50 +0100 |
commit | 5c0cb0547bd52230faff322a33bfeac0eaaeea0d (patch) | |
tree | 36edb4f227c5e004316e3dc87e7b4624ce6c7e69 /test cases/frameworks | |
parent | 5da355733113c6d61f22ff74c7e00fc65e01b253 (diff) | |
download | meson-5c0cb0547bd52230faff322a33bfeac0eaaeea0d.zip meson-5c0cb0547bd52230faff322a33bfeac0eaaeea0d.tar.gz meson-5c0cb0547bd52230faff322a33bfeac0eaaeea0d.tar.bz2 |
Fix test.json for boost test to match schema
I guess the intent was that tests of thread/debug library variants only
get run with MSVC, but currently this test isn't getting run at all in
our Windows CI (since boost got removed from the VM image [1], and we
didn't notice, more on which anon).
[1] https://github.com/actions/virtual-environments/pull/2843
Diffstat (limited to 'test cases/frameworks')
-rw-r--r-- | test cases/frameworks/1 boost/test.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test cases/frameworks/1 boost/test.json b/test cases/frameworks/1 boost/test.json index f4412d2..3145c80 100644 --- a/test cases/frameworks/1 boost/test.json +++ b/test cases/frameworks/1 boost/test.json @@ -7,10 +7,10 @@ ], "b_vscrt": [ { "val": null }, - { "val": "md", "compilers": { "cpp": [ "msvc" ] } }, - { "val": "mdd", "compilers": { "cpp": [ "msvc" ] } }, - { "val": "mt", "compilers": { "cpp": [ "msvc" ] } }, - { "val": "mtd", "compilers": { "cpp": [ "msvc" ] } } + { "val": "md", "compilers": { "cpp": "msvc" } }, + { "val": "mdd", "compilers": { "cpp": "msvc" } }, + { "val": "mt", "compilers": { "cpp": "msvc" } }, + { "val": "mtd", "compilers": { "cpp": "msvc" } } ] }, "exclude": [ |