diff options
author | Aditya Mandaleeka <adityam@microsoft.com> | 2017-01-26 15:25:10 -0800 |
---|---|---|
committer | Aditya Mandaleeka <adityam@microsoft.com> | 2017-01-30 19:32:00 -0800 |
commit | a6b8ea0c1e329ee73303ec0dbecf22a97bdb0755 (patch) | |
tree | 5b873a4e33ec45c2e2cbe58792e09c6514b4bc24 /tests | |
parent | 69b5d5c46e007cbb580c411b60dc501362af0486 (diff) | |
download | coreclr-a6b8ea0c1e329ee73303ec0dbecf22a97bdb0755.tar.gz coreclr-a6b8ea0c1e329ee73303ec0dbecf22a97bdb0755.tar.bz2 coreclr-a6b8ea0c1e329ee73303ec0dbecf22a97bdb0755.zip |
Switch to a newer version of the dump management service we use.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtest.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh index 4db1ac3d88..ef7f2fbb20 100755 --- a/tests/runtest.sh +++ b/tests/runtest.sh @@ -592,7 +592,7 @@ function print_info_from_core_file { function download_dumpling_script { echo "Downloading latest version of dumpling script." - wget "https://raw.githubusercontent.com/Microsoft/dotnet-reliability/master/src/triage.python/dumpling.py" + wget "https://dumpling.azurewebsites.net/api/client/dumpling.py" local dumpling_script="dumpling.py" chmod +x $dumpling_script @@ -623,8 +623,11 @@ function upload_core_file_to_dumpling { paths_to_add=$coreClrBinDir fi + # Ensure the script has Unix line endings + perl -pi -e 's/\r\n|\n|\r/\n/g' "$dumpling_script" + # The output from this will include a unique ID for this dump. - ./$dumpling_script "--corefile" "$core_file_name" "upload" "--addpaths" $paths_to_add "--squelch" | tee -a $dumpling_file + ./$dumpling_script "upload" "--dumppath" "$core_file_name" "--incpaths" $paths_to_add "--properties" "Project=CoreCLR" "--squelch" | tee -a $dumpling_file } function preserve_core_file { |