diff options
author | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-07-04 02:36:03 +0200 |
---|---|---|
committer | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-07-04 16:42:08 +0200 |
commit | cea3ecc8e10fc00c93e4c1331430f06c0a936eb7 (patch) | |
tree | e4854c5f92dc53fa63eb03bce56eab52e49aa010 | |
parent | 91a65e9ee655d7919972cb50811b417c97be95a5 (diff) |
test: Allow self-contained tests to run in parallel
The IPA, IPC and Stream tests are self-contained so they can run in
parallel.
Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r-- | test/ipa/meson.build | 2 | ||||
-rw-r--r-- | test/ipc/meson.build | 2 | ||||
-rw-r--r-- | test/stream/meson.build | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/ipa/meson.build b/test/ipa/meson.build index bca39fa3..1749ab7d 100644 --- a/test/ipa/meson.build +++ b/test/ipa/meson.build @@ -8,5 +8,5 @@ foreach t : ipa_test link_with : test_libraries, include_directories : test_includes_internal) - test(t[0], exe, suite : 'ipa', is_parallel : false) + test(t[0], exe, suite : 'ipa') endforeach diff --git a/test/ipc/meson.build b/test/ipc/meson.build index ca8375f3..cc46b41c 100644 --- a/test/ipc/meson.build +++ b/test/ipc/meson.build @@ -8,5 +8,5 @@ foreach t : ipc_tests link_with : test_libraries, include_directories : test_includes_internal) - test(t[0], exe, suite : 'ipc', is_parallel : false) + test(t[0], exe, suite : 'ipc') endforeach diff --git a/test/stream/meson.build b/test/stream/meson.build index 2f2493de..005f4aa4 100644 --- a/test/stream/meson.build +++ b/test/stream/meson.build @@ -7,5 +7,5 @@ foreach t : stream_tests dependencies : libcamera_dep, link_with : test_libraries, include_directories : test_includes_internal) - test(t[0], exe, suite: 'stream', is_parallel: false) + test(t[0], exe, suite: 'stream') endforeach |