summaryrefslogtreecommitdiff
path: root/tests/runtest.sh
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2017-06-15 14:20:11 -0700
committerGitHub <noreply@github.com>2017-06-15 14:20:11 -0700
commit35ab28fd818de8933f6e02472ea34196b52df40e (patch)
treeab60c37b41667c77b15fe603921864fd6d141e31 /tests/runtest.sh
parentd5d64fe951e939512eea2bb944691dd427976cc6 (diff)
parent308c352f07b4e3e0c4069ac1d403900381a0afd5 (diff)
downloadcoreclr-35ab28fd818de8933f6e02472ea34196b52df40e.tar.gz
coreclr-35ab28fd818de8933f6e02472ea34196b52df40e.tar.bz2
coreclr-35ab28fd818de8933f6e02472ea34196b52df40e.zip
Merge pull request #11743 from jashook/arm64_unix_ci
Add the arm64 unix CI
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 ac3e382763..886c5b49ea 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 {