aboutsummaryrefslogtreecommitdiff
path: root/llvm_tools/bisect_clang_crashes_unittest.py
diff options
context:
space:
mode:
authorGeorge Burgess IV <gbiv@google.com>2020-10-08 11:18:36 -0700
committerGeorge Burgess <gbiv@chromium.org>2020-10-08 18:45:52 +0000
commit7624e2dace1eddb857ba092d4db07ade86891165 (patch)
tree11751db9a67a4030b45928ec69dd11979a9444dc /llvm_tools/bisect_clang_crashes_unittest.py
parent44e5787e5c98615899e512462491089e5c4dfb00 (diff)
downloadtoolchain-utils-7624e2dace1eddb857ba092d4db07ade86891165.tar.gz
llvm_tools: use gsutil.py instead of gsutil
chrotomation.mtv has gsutil.py from depot_tools, and no pre-installed gsutil. seems easiest to just add another dependency on gsutil.py. BUG=None TEST=Ran on chrotomation Change-Id: I9833c0fb1e11d31b3a4c17375e0f296ff5a83a8e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/2462043 Reviewed-by: Manoj Gupta <manojgupta@chromium.org> Tested-by: George Burgess <gbiv@chromium.org>
Diffstat (limited to 'llvm_tools/bisect_clang_crashes_unittest.py')
-rwxr-xr-xllvm_tools/bisect_clang_crashes_unittest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_tools/bisect_clang_crashes_unittest.py b/llvm_tools/bisect_clang_crashes_unittest.py
index 66923ffc..c9143450 100755
--- a/llvm_tools/bisect_clang_crashes_unittest.py
+++ b/llvm_tools/bisect_clang_crashes_unittest.py
@@ -40,7 +40,7 @@ class Test(unittest.TestCase):
mock_gsutil_ls.return_value = 'artifact1\nartifact2\nartifact3'
results = bisect_clang_crashes.get_artifacts(pattern)
self.assertEqual(results, ['artifact1', 'artifact2', 'artifact3'])
- mock_gsutil_ls.assert_called_once_with(['gsutil', 'ls', pattern],
+ mock_gsutil_ls.assert_called_once_with(['gsutil.py', 'ls', pattern],
stderr=subprocess.STDOUT,
encoding='utf-8')