diff options
author | Carl Raiden Worley <carl.worley@10gen.com> | 2020-05-04 12:02:26 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-05-04 19:26:55 +0000 |
commit | c1081f22237d6b92aeaeadefd85614ef83f9fc89 (patch) | |
tree | 538070fa9b664892102b000108d049dfd95e92fc /etc | |
parent | 47b3bc5d5927225bb1fd7767613b1cf74157f7c9 (diff) | |
download | mongo-c1081f22237d6b92aeaeadefd85614ef83f9fc89.tar.gz |
SERVER-46684 Repackage the hang-analyzer as a resmoke subcommand
Diffstat (limited to 'etc')
-rw-r--r-- | etc/evergreen.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml index 1f11a6c8584..ecac3d29dc4 100644 --- a/etc/evergreen.yml +++ b/etc/evergreen.yml @@ -3506,10 +3506,10 @@ functions: fi ${activate_virtualenv} - echo "Calling the hang analyzer: PATH=\"/opt/mongodbtoolchain/gdb/bin:$PATH\" $python buildscripts/hang_analyzer.py $hang_analyzer_option" - PATH="/opt/mongodbtoolchain/gdb/bin:$PATH" $python buildscripts/hang_analyzer.py $hang_analyzer_option + echo "Calling the hang analyzer: PATH=\"/opt/mongodbtoolchain/gdb/bin:$PATH\" $python buildscripts/resmoke.py hang-analyzer $hang_analyzer_option" + PATH="/opt/mongodbtoolchain/gdb/bin:$PATH" $python buildscripts/resmoke.py hang-analyzer $hang_analyzer_option - # Call hang_analyzer.py script for tasks that are running remote mongo processes + # Call hang analyzer for tasks that are running remote mongo processes if [ -n "${private_ip_address}" ]; then core_ext=core if [ "Windows_NT" = "$OS" ]; then @@ -3544,7 +3544,7 @@ functions: # we don't want to evaluate the local python variable, but instead pass the python string # so the remote host will use the right python when the virtualenv is sourced. cmds="$cmds; cd ${remote_dir}" - cmds="$cmds; PATH=\"/opt/mongodbtoolchain/gdb/bin:\$PATH\" python buildscripts/hang_analyzer.py $hang_analyzer_option" + cmds="$cmds; PATH=\"/opt/mongodbtoolchain/gdb/bin:\$PATH\" python buildscripts/resmoke.py hang-analyzer $hang_analyzer_option" $python buildscripts/remote_operations.py \ --verbose \ --userHost $USER@${private_ip_address} \ |