tests: Use suites for test cases

They allows to filter tests better and so we can just launch tests with:
  meson test --suite [core|cogl|clutter] [single-test-name]

https://gitlab.gnome.org/GNOME/mutter/merge_requests/442
This commit is contained in:
Marco Trevisan (Treviño)
2018-11-14 02:37:23 +01:00
committed by Marco Trevisan
parent c6d1cf4af4
commit a934fa07b8
4 changed files with 10 additions and 5 deletions

View File

@@ -74,7 +74,8 @@ foreach test : clutter_conform_tests
install: false,
)
test('clutter/conform/@0@'.format(test), test_executable,
test(test, test_executable,
suite: ['clutter', 'clutter/conform'],
env: test_env
)
endforeach