summaryrefslogtreecommitdiff
path: root/tests/runtest.sh
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityam@microsoft.com>2017-07-07 12:54:35 -0700
committerAditya Mandaleeka <adityam@microsoft.com>2017-07-07 14:01:04 -0700
commitf82c45150188a57c245f4a430592008c35ad1849 (patch)
tree8bd8b3c39afb4cd78fb6234a68a7ab51e2f1cf6a /tests/runtest.sh
parentf024e166d69ba4d82544e868a5544d7edece5e43 (diff)
downloadcoreclr-f82c45150188a57c245f4a430592008c35ad1849.tar.gz
coreclr-f82c45150188a57c245f4a430592008c35ad1849.tar.bz2
coreclr-f82c45150188a57c245f4a430592008c35ad1849.zip
Temporarily block core dump printing on arm64 to unblock CI.
Diffstat (limited to 'tests/runtest.sh')
-rwxr-xr-xtests/runtest.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh
index 886c5b49ea..6a874a57bc 100755
--- a/tests/runtest.sh
+++ b/tests/runtest.sh
@@ -576,6 +576,14 @@ function set_up_core_dump_generation {
}
function print_info_from_core_file {
+
+ #### temporary
+ if [ "$ARCH" == "arm64" ]; then
+ echo "Not inspecting core dumps on arm64 at the moment."
+ return
+ fi
+ ####
+
local core_file_name=$1
local executable_name=$2