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-12 10:01:00 -0700
commitc99cee8178a7833df4f6b22fb4cda25069624aed (patch)
tree716a2c39612d680f0eb3ac1a36cd24935e850043 /tests/runtest.sh
parentb386a62a3b191d01723fa9a5c65fa4914dcb4854 (diff)
downloadcoreclr-c99cee8178a7833df4f6b22fb4cda25069624aed.tar.gz
coreclr-c99cee8178a7833df4f6b22fb4cda25069624aed.tar.bz2
coreclr-c99cee8178a7833df4f6b22fb4cda25069624aed.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 {