aboutsummaryrefslogtreecommitdiff
path: root/tests/cli/llvmtestcase.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cli/llvmtestcase.py')
-rw-r--r--tests/cli/llvmtestcase.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/tests/cli/llvmtestcase.py b/tests/cli/llvmtestcase.py
index 9b4ac3e..a6f234d 100644
--- a/tests/cli/llvmtestcase.py
+++ b/tests/cli/llvmtestcase.py
@@ -84,18 +84,11 @@ class LLVMTestCase(unittest.TestCase):
def command_with_defaults(cls, subcommand, *args, **kwargs):
"""
Build a list representing a llvm subcommand with the given
- args. Unless otherwise specified in kwargs, this uses the values for
- repos and env that it finds in cls.
+ args. Unless otherwise specified in kwargs, this uses the value for
+ env that it finds in cls.
"""
command = [cls.python, cls.script]
- repos = cls.repos
- if "repos" in kwargs:
- repos = kwargs["repos"]
- if repos:
- command.append("--repos")
- command.append(repos)
-
env = cls.env
if "env" in kwargs:
env = kwargs["env"]