summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2021-03-02 09:44:29 +0200
committerSimo Fält <simo.falt@qt.io>2021-03-02 08:37:50 +0000
commit4687686a64057618e58931912b8a12997fa0f1a3 (patch)
tree8143f58902b2fa04dea653f8d6939829705c2c14
parent92b29d541e0b8bdf9d25965aa608dbf9a35c5ded (diff)
Fix test running
Apparently it is not enough to unset the MAKEFLAGS for jom. It still was running test in parallel and trying to write results to same file. Change-Id: Id0c968dde4c2d005e71a1895e3d2190e8685f3ec Reviewed-by: Katja Marttila <katja.marttila@qt.io>
-rw-r--r--coin/instructions/make_check_instructions.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/coin/instructions/make_check_instructions.yaml b/coin/instructions/make_check_instructions.yaml
index a2aac5dac..9253fa548 100644
--- a/coin/instructions/make_check_instructions.yaml
+++ b/coin/instructions/make_check_instructions.yaml
@@ -103,7 +103,7 @@ instructions:
- type: RunQtUnitTest
testRepetitionAllowance: 3
directory: "{{.SourceDir}}/tests/auto"
- runTestCommand: ["jom", "check"]
+ runTestCommand: ["jom", "check", "-j1"]
maxTimeInSeconds: 3600
maxTimeBetweenOutput: 600
userMessageOnFailure: "Failed to run make check, check logs."