summaryrefslogtreecommitdiff
path: root/tests/runtest.sh
diff options
context:
space:
mode:
authorjashook <jashoo@microsoft.com>2017-04-17 15:53:12 -0700
committerjashook <jashoo@microsoft.com>2017-06-15 14:34:52 -0700
commitf75b7093f12137364f1a296545dc6defb528fd10 (patch)
tree29cf66873aadc5be88324af535d42815f053ac11 /tests/runtest.sh
parentb386a62a3b191d01723fa9a5c65fa4914dcb4854 (diff)
downloadcoreclr-f75b7093f12137364f1a296545dc6defb528fd10.tar.gz
coreclr-f75b7093f12137364f1a296545dc6defb528fd10.tar.bz2
coreclr-f75b7093f12137364f1a296545dc6defb528fd10.zip
Add the arm64 unix CI
This will enable unix arm64 testing in CI. Currently there are no default tirggers; however, anyone will be able to request the jobs.
Diffstat (limited to 'tests/runtest.sh')
-rwxr-xr-xtests/runtest.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh
index 6a1ef68d5d..35580d09d4 100755
--- a/tests/runtest.sh
+++ b/tests/runtest.sh
@@ -478,6 +478,10 @@ function load_unsupported_tests {
function load_failing_tests {
# Load the list of tests that fail on this platform. These tests are disabled (skipped) temporarily, pending investigation.
failingTests=($(read_array "$(dirname "$0")/testsFailingOutsideWindows.txt"))
+
+ if [ "$ARCH" == "arm64" ]; then
+ failingTests+=($(read_array "$(dirname "$0")/testsFailingOnArm64.txt"))
+ fi
}
function load_playlist_tests {