aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJian Cai <jiancai@google.com>2020-01-16 11:12:54 -0800
committerJian Cai <jiancai@google.com>2020-01-17 01:49:12 +0000
commitb47813efda60622787afcb0a9bc3070031ac4e9f (patch)
treeae18e7ccf2c130da1dddb5b2588d5088aa0866b3
parent0410b6515691a2fd3410917849d32495490d6999 (diff)
downloadtoolchain-utils-b47813efda60622787afcb0a9bc3070031ac4e9f.tar.gz
patch_manager: appease pylint
Fix unused-argument complaints in unit tests. BUG=chromium:1042953 TEST=verified locally. Change-Id: I7037fc10f8160a5f1f8929a3256e91255dd125ac Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/2006330 Reviewed-by: George Burgess <gbiv@chromium.org> Reviewed-by: Manoj Gupta <manojgupta@chromium.org> Tested-by: Jian Cai <jiancai@google.com>
-rwxr-xr-xllvm_tools/patch_manager.py14
-rwxr-xr-xllvm_tools/patch_manager_unittest.py10
2 files changed, 11 insertions, 13 deletions
diff --git a/llvm_tools/patch_manager.py b/llvm_tools/patch_manager.py
index 910ecfc9..82a73ed8 100755
--- a/llvm_tools/patch_manager.py
+++ b/llvm_tools/patch_manager.py
@@ -8,17 +8,17 @@
from __future__ import print_function
-from collections import namedtuple
-from failure_modes import FailureModes
-from subprocess_helpers import check_call
-from subprocess_helpers import check_output
-
import argparse
import json
-import get_llvm_hash
import os
import subprocess
import sys
+from collections import namedtuple
+
+import get_llvm_hash
+from failure_modes import FailureModes
+from subprocess_helpers import check_call
+from subprocess_helpers import check_output
def is_directory(dir_path):
@@ -279,8 +279,6 @@ def UpdatePatchMetadataFile(patch_metadata_file, patches):
def GetCommitHashesForBisection(src_path, good_svn_version, bad_svn_version):
"""Gets the good and bad commit hashes required by `git bisect start`."""
- new_llvm_hash = LLVMHash()
-
bad_commit_hash = get_llvm_hash.GetGitHashFrom(src_path, bad_svn_version)
good_commit_hash = get_llvm_hash.GetGitHashFrom(src_path, good_svn_version)
diff --git a/llvm_tools/patch_manager_unittest.py b/llvm_tools/patch_manager_unittest.py
index 90200ab8..688c2fe6 100755
--- a/llvm_tools/patch_manager_unittest.py
+++ b/llvm_tools/patch_manager_unittest.py
@@ -14,11 +14,11 @@ import subprocess
import unittest
import unittest.mock as mock
+import patch_manager
from failure_modes import FailureModes
from test_helpers import CallCountsToMockFunctions
from test_helpers import CreateTemporaryJsonFile
from test_helpers import WritePrettyJsonFile
-import patch_manager
class PatchManagerTest(unittest.TestCase):
@@ -326,8 +326,8 @@ class PatchManagerTest(unittest.TestCase):
# Simulate behavior of 'GetPathToPatch()' when the absolute path to the
# patch does not exist.
def PathToPatchDoesNotExist(filesdir_path, rel_patch_path):
- raise ValueError(
- 'The absolute path to %s does not exist' % abs_patch_path)
+ raise ValueError('The absolute path to %s does not exist' % os.path.join(
+ filesdir_path, rel_patch_path))
# Use the test function to simulate the behavior of 'GetPathToPatch()'.
mock_get_path_to_patch.side_effect = PathToPatchDoesNotExist
@@ -463,7 +463,7 @@ class PatchManagerTest(unittest.TestCase):
# Simulate behavior for 'ApplyPatch()' when applying multiple applicable
# patches.
@CallCountsToMockFunctions
- def MultipleCallsToApplyPatches(call_count, src_path, path_to_patch):
+ def MultipleCallsToApplyPatches(call_count, _, path_to_patch):
if call_count < 3:
self.assertEqual(
path_to_patch,
@@ -569,7 +569,7 @@ class PatchManagerTest(unittest.TestCase):
# Simulate behavior for 'ApplyPatch()' when applying multiple applicable
# patches.
@CallCountsToMockFunctions
- def MultipleCallsToApplyPatches(call_count, src_path, path_to_patch):
+ def MultipleCallsToApplyPatches(call_count, _, path_to_patch):
if call_count < 3:
self.assertEqual(
path_to_patch,