aboutsummaryrefslogtreecommitdiff
path: root/utils/lit/TestFormats.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/lit/TestFormats.py')
-rw-r--r--utils/lit/TestFormats.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/utils/lit/TestFormats.py b/utils/lit/TestFormats.py
index fcafe3cc7a..d7454e6de3 100644
--- a/utils/lit/TestFormats.py
+++ b/utils/lit/TestFormats.py
@@ -81,14 +81,12 @@ class FileBasedTest(object):
localConfig)
class ShTest(FileBasedTest):
- def __init__(self, execute_external = False, require_and_and = False):
+ def __init__(self, execute_external = False):
self.execute_external = execute_external
- self.require_and_and = require_and_and
def execute(self, test, litConfig):
return TestRunner.executeShTest(test, litConfig,
- self.execute_external,
- self.require_and_and)
+ self.execute_external)
class TclTest(FileBasedTest):
def execute(self, test, litConfig):