This new keyword argument makes it possible to run specific test setups only on a subset of the tests. For example, to mark some tests as slow and avoid running them by default: add_test_setup('quick', exclude_suites: ['slow'], is_default: true) add_test_setup('slow') It will then be possible to run the slow tests with either `meson test --setup slow` or `meson test --suite slow`.pull/8288/head
parent
e7b587c81f
commit
c7c2bc8db1
6 changed files with 38 additions and 15 deletions
Loading…
Reference in new issue