2020-06-25 13:45:50 +00:00
|
|
|
type: Group
|
|
|
|
instructions:
|
2020-07-01 09:13:15 +00:00
|
|
|
- type: EnvironmentVariable
|
|
|
|
variableName: QTEST_ENVIRONMENT
|
|
|
|
variableValue: "ci"
|
2021-03-15 14:50:28 +00:00
|
|
|
- type: WriteFile
|
|
|
|
fileContents: |
|
|
|
|
#!/usr/bin/python3
|
|
|
|
import subprocess
|
|
|
|
import calendar
|
|
|
|
import datetime
|
|
|
|
import time
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
from os.path import expanduser
|
|
|
|
home = expanduser("~")
|
|
|
|
|
|
|
|
file=os.path.basename(sys.argv[1])
|
|
|
|
timestamp = str(round(time.time() * 1000))
|
|
|
|
results_file = home + "/work/testresults/" + file +"-" + timestamp + ".xml,xml"
|
|
|
|
testargs = ["-o", results_file, "-o", "-,txt"]
|
|
|
|
if re.search("testlib.selftests.tst_selftests", sys.argv[1]):
|
|
|
|
testargs = []
|
|
|
|
exit(subprocess.call([sys.argv[1]] + testargs))
|
|
|
|
filename: "{{.SourceDir}}/coin_ctest_runner.py"
|
|
|
|
fileMode: 755
|
|
|
|
- type: ExecuteCommand
|
|
|
|
command: "chmod 755 {{.SourceDir}}/coin_ctest_runner.py"
|
|
|
|
maxTimeInSeconds: 10
|
|
|
|
maxTimeBetweenOutput: 10
|
|
|
|
userMessageOnFailure: >
|
|
|
|
Failed to change file permission.
|
|
|
|
disable_if:
|
|
|
|
condition: property
|
|
|
|
property: host.os
|
|
|
|
equals_value: Windows
|
2020-06-25 13:45:50 +00:00
|
|
|
- type: Group
|
|
|
|
instructions:
|
|
|
|
- type: EnvironmentVariable
|
|
|
|
variableName: TESTS_ENV_PREFIX
|
|
|
|
variableValue: "{{.Env.ENV_PREFIX}}"
|
|
|
|
enable_if:
|
|
|
|
condition: and
|
|
|
|
conditions:
|
|
|
|
- condition: property
|
|
|
|
property: host.os
|
|
|
|
equals_property: target.os
|
|
|
|
- condition: property
|
|
|
|
property: target.osVersion
|
|
|
|
not_equals_value: QEMU
|
|
|
|
- type: Group
|
|
|
|
instructions:
|
|
|
|
- type: EnvironmentVariable
|
|
|
|
variableName: TESTS_ENV_PREFIX
|
|
|
|
variableValue: "{{.Env.TARGET_ENV_PREFIX}}"
|
|
|
|
disable_if:
|
|
|
|
condition: and
|
|
|
|
conditions:
|
|
|
|
- condition: property
|
|
|
|
property: host.os
|
|
|
|
equals_property: target.os
|
|
|
|
- condition: property
|
|
|
|
property: target.osVersion
|
|
|
|
not_equals_value: QEMU
|