From patchwork Thu Jul 4 01:26:56 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Niklas_S=C3=B6derlund?= X-Patchwork-Id: 1600 Return-Path: Received: from bin-mail-out-06.binero.net (bin-mail-out-06.binero.net [195.74.38.229]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id E593560BEE for ; Thu, 4 Jul 2019 03:27:02 +0200 (CEST) X-Halon-ID: d0f13f37-9dfa-11e9-8ab4-005056917a89 Authorized-sender: niklas@soderlund.pp.se Received: from bismarck.berto.se (unknown [145.14.112.32]) by bin-vsp-out-01.atm.binero.net (Halon) with ESMTPA id d0f13f37-9dfa-11e9-8ab4-005056917a89; Thu, 04 Jul 2019 03:27:01 +0200 (CEST) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: libcamera-devel@lists.libcamera.org Date: Thu, 4 Jul 2019 03:26:56 +0200 Message-Id: <20190704012656.14188-1-niklas.soderlund@ragnatech.se> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] test: Allow self-contained tests to run in parallel X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Jul 2019 01:27:03 -0000 The IPA, IPC and Stream tests are self-contained so they can run in parallel. Signed-off-by: Niklas Söderlund Reviewed-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- test/ipa/meson.build | 2 +- test/ipc/meson.build | 2 +- 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 bca39fa3f6d06ae4..1749ab7d43381fd7 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 ca8375f35df91731..cc46b41c76870def 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 2f2493de38ae0954..005f4aa4996ad563 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