diff options
author | Bruce Forstall <brucefo@microsoft.com> | 2018-12-17 17:28:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-17 17:28:16 -0800 |
commit | 5fc2313f1bc4ffac033f38b2162175c958cfdf3f (patch) | |
tree | 0017683bb04da8e1afcde203e5622d0ed09841d7 /tests/scripts | |
parent | 2da117f31e8c96804bffb01ab3f5036e73a3451a (diff) | |
parent | 9e602a4e24c8709b889e3faa5ac180c9301799eb (diff) | |
download | coreclr-5fc2313f1bc4ffac033f38b2162175c958cfdf3f.tar.gz coreclr-5fc2313f1bc4ffac033f38b2162175c958cfdf3f.tar.bz2 coreclr-5fc2313f1bc4ffac033f38b2162175c958cfdf3f.zip |
Merge pull request #21574 from BruceForstall/AddDotnetDiagnosticsInfo
Add dotnet info to PMI asm diffs output
Diffstat (limited to 'tests/scripts')
-rw-r--r-- | tests/scripts/run-pmi-diffs.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/scripts/run-pmi-diffs.py b/tests/scripts/run-pmi-diffs.py index 2be7b8ebbc..4416ab8bf2 100644 --- a/tests/scripts/run-pmi-diffs.py +++ b/tests/scripts/run-pmi-diffs.py @@ -487,6 +487,11 @@ def do_pmi_diffs(): log('Add %s to my PATH' % dotnetcliPath) my_env["PATH"] = dotnetcliPath + os.pathsep + my_env["PATH"] + # To aid diagnosing problems, do "dotnet --info" to output to any capturing logfile. + + command = ["dotnet", "--info"] + returncode = run_command(command, my_env) + # Clone jitutils command = 'git clone -b master --single-branch %s %s' % (Jitutils_url, jitutilsPath) |