From 89826b997081e4802a85476c9610cb405f12f892 Mon Sep 17 00:00:00 2001 From: David Skoland Date: Mon, 19 Sep 2022 15:52:18 +0200 Subject: [PATCH] wasm: Disable coin test runner for wasm targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit qttestrunner.py needs special logic to handle wasm tests, which is not implemented yet. Disable the coin testrunner until that is implemented. Change-Id: Idfd001df5f6dcf44904940ace9adef5a355886cf Pick-to: 6.4 Reviewed-by: Morten Johan Sørvig Reviewed-by: Toni Saario Reviewed-by: Mikołaj Boc --- coin/instructions/cmake_run_ctest_enforce_exit_code.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/coin/instructions/cmake_run_ctest_enforce_exit_code.yaml b/coin/instructions/cmake_run_ctest_enforce_exit_code.yaml index ba9b1f3a796..a9755d4f004 100644 --- a/coin/instructions/cmake_run_ctest_enforce_exit_code.yaml +++ b/coin/instructions/cmake_run_ctest_enforce_exit_code.yaml @@ -11,6 +11,11 @@ instructions: - type: EnvironmentVariable variableName: TESTRUNNER variableValue: "{{.Env.LIBEXEC_INSTALL_DIR}}qt-testrunner.py --" + # Running wasm tests with the coin testrunner is not yet implemented + disable_if: + condition: property + property: target.osVersion + in_values: [WebAssembly] - type: AppendToEnvironmentVariable variableName: TESTRUNNER variableValue: " {{.SourceDir}}/coin_qnx_qemu_runner.sh"