summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2021-09-14 13:01:08 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2021-09-15 16:35:25 +0100
commita881b90b5d2a51e196137221a7487055c03926cd (patch)
tree25c6cab7a1983d72d9e0db66df55771b8ba9e054 /test
parent4cf7a8fc0bd5a2c6b606f27101d905f63a846b5f (diff)
test: serialization: Prevent parallelisation
The ipa_data_serializer_test is configured to be able to run in parallel with other tests. If the test tries to acquire the VIMC sensor B while it is in use, it would skip require skipping the test. Instead, inform meson that it can not be run in parallel to ensure that the test is able to obtain the resources it requires for execution. Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test')
-rw-r--r--test/serialization/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/serialization/meson.build b/test/serialization/meson.build
index 5446e490..26e42b15 100644
--- a/test/serialization/meson.build
+++ b/test/serialization/meson.build
@@ -12,5 +12,5 @@ foreach t : serialization_tests
dependencies : libcamera_private,
link_with : test_libraries,
include_directories : test_includes_internal)
- test(t[0], exe, suite : 'serialization', is_parallel : true)
+ test(t[0], exe, suite : 'serialization', is_parallel : false)
endforeach