summaryrefslogtreecommitdiff
path: root/tests/runtest_helix.py
diff options
context:
space:
mode:
authorSven Boemer <sbomer@gmail.com>2018-11-08 08:50:37 -0800
committerGitHub <noreply@github.com>2018-11-08 08:50:37 -0800
commit8bc5616def9074d8457f85d22b1280493ad731ad (patch)
tree059d9a50f34f73924a3d168853d9ce10c39a313a /tests/runtest_helix.py
parentf6e7568cc6d4901abb5e11ebc05267743a1c5205 (diff)
downloadcoreclr-8bc5616def9074d8457f85d22b1280493ad731ad.tar.gz
coreclr-8bc5616def9074d8457f85d22b1280493ad731ad.tar.bz2
coreclr-8bc5616def9074d8457f85d22b1280493ad731ad.zip
Add azure-pipelines build and test definitions (#20840)
This adds an azure pipeline definition with a matrix of product and test builds, using helix to run tests. The intention is that this definition will eventually be used for both our official build and CI testing. There is one build job for each OS/platform/arch, and one test job for each OS/platform/arch/priority/R2Rflag. The test job builds tests and then submits them to helix, passing along a number of test run modes. One helix test job will be created for each OS/platform/arch/priority/R2Rflag/helixtargetqueue/testscenario. There is a lot of work left to be done to get this up to parity with our official builds and CI, which I've tried to call out in comments.
Diffstat (limited to 'tests/runtest_helix.py')
-rwxr-xr-xtests/runtest_helix.py104
1 files changed, 104 insertions, 0 deletions
diff --git a/tests/runtest_helix.py b/tests/runtest_helix.py
new file mode 100755
index 0000000000..910d9d77ce
--- /dev/null
+++ b/tests/runtest_helix.py
@@ -0,0 +1,104 @@
+#!/usr/bin/env python
+
+# This script runs tests in helix. It defines a set of test scenarios
+# that enable various combinations of runtime configurations to be set
+# via the test process environment.
+
+# This script calls "corerun xunit.console.dll xunitwrapper.dll",
+# where the xunitwrapper.dll will run a .sh/.cmd script per test in a
+# separate process. This process will have the scenario environment
+# variables set, but the xunit process will not.
+
+# TODO: Factor out logic common with runtest.py
+
+import argparse
+import subprocess
+import os
+import sys
+import tempfile
+
+test_scenarios = {
+ "jitstress2": { "COMPlus_TieredCompilation": "0",
+ "COMPlus_JitStress": "2" },
+}
+
+if sys.platform == "linux" or sys.platform == "darwin":
+ platform_type = "unix"
+elif sys.platform == "win32":
+ platform_type = "windows"
+else:
+ print("unknown os: %s" % sys.platform)
+ sys.exit(1)
+
+def get_testenv_script(env_dict):
+ if platform_type == "unix":
+ return ''.join([ "export %s=%s%s" % (k, v, os.linesep) for k, v in env_dict.items() ])
+ elif platform_type == "windows":
+ return ''.join([ "set %s=%s%s" % (k, v, os.linesep) for k, v in env_dict.items() ])
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser(description="Parse arguments")
+ parser.add_argument("-scenario", dest="scenario", default=None)
+ parser.add_argument("-wrapper", dest="wrapper", default=None, required=True)
+ args = parser.parse_args()
+ scenario = args.scenario
+ wrapper = args.wrapper
+
+ if not "HELIX_CORRELATION_PAYLOAD" in os.environ:
+ print("HELIX_CORRELATION_PAYLOAD must be defined in environment")
+ sys.exit(1)
+
+ if not "HELIX_WORKITEM_PAYLOAD" in os.environ:
+ print("HELIX_WORKITEM_PAYLOAD must be defined in environment")
+ sys.exit(1)
+
+ core_root = os.environ["HELIX_CORRELATION_PAYLOAD"]
+
+ if platform_type == "unix":
+ corerun = os.path.join(core_root, "corerun")
+ else:
+ corerun = os.path.join(core_root, "corerun.exe")
+
+ # Unlike the old test wrapper, this runs xunit.console.dll from
+ # the correlation payload. This removes the need for redundant
+ # copies of the console runner in each test directory.
+ command = [corerun,
+ os.path.join(os.environ["HELIX_CORRELATION_PAYLOAD"], "xunit.console.dll"),
+ os.path.join(os.environ["HELIX_WORKITEM_PAYLOAD"], wrapper),
+ "-noshadow",
+ "-xml", "testResults.xml",
+ "-notrait", "category=outerloop",
+ "-notrait", "category=failing"]
+
+ if scenario is None:
+ print("CORE_ROOT=%s" % core_root)
+ os.environ["CORE_ROOT"] = core_root
+
+ print("BEGIN EXECUTION")
+ print(' '.join(command))
+ proc = subprocess.Popen(command)
+ proc.communicate()
+ print("Finished running tests. Exit code = %d" % proc.returncode)
+ sys.exit(proc.returncode)
+ else:
+ print("scenario: %s" % scenario)
+ with tempfile.NamedTemporaryFile(mode="w") as testenv:
+ testenv.write(get_testenv_script(test_scenarios[scenario]))
+ testenv.flush()
+
+ print("__TestEnv=%s" % testenv.name)
+ os.environ["__TestEnv"] = testenv.name
+
+ with open(testenv.name) as testenv_written:
+ contents = testenv_written.read()
+ print(contents)
+
+ print("CORE_ROOT=%s" % core_root)
+ os.environ["CORE_ROOT"] = core_root
+
+ print("BEGIN EXECUTION")
+ print(' '.join(command))
+ proc = subprocess.Popen(command)
+ proc.communicate()
+ print("Finished running tests. Exit code = %d" % proc.returncode)
+ sys.exit(proc.returncode)