From: Aditya Mandaleeka Date: Fri, 7 Jul 2017 19:54:35 +0000 (-0700) Subject: Temporarily block core dump printing on arm64 to unblock CI. X-Git-Tag: submit/tizen/20210909.063632~11030^2~6925^2~244^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=66a21b33dfd0bd99c458bb549acf3119944d2c92;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Temporarily block core dump printing on arm64 to unblock CI. Commit migrated from https://github.com/dotnet/coreclr/commit/f82c45150188a57c245f4a430592008c35ad1849 --- diff --git a/src/coreclr/tests/runtest.sh b/src/coreclr/tests/runtest.sh index 886c5b4..6a874a57 100755 --- a/src/coreclr/tests/runtest.sh +++ b/src/coreclr/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