diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-08 09:07:13 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-08 09:07:13 +0000 |
commit | 6ff773bd2157a55b62dec774451411ec6c32bf5e (patch) | |
tree | 7c73ee9bffe672a5413f1a13a9ff731879efcdda /llvm/utils/lit/TestFormats.py | |
parent | 09eeeaf08b293c3fc62c2cd434a455c207bd40e4 (diff) | |
download | bcm5719-llvm-6ff773bd2157a55b62dec774451411ec6c32bf5e.tar.gz bcm5719-llvm-6ff773bd2157a55b62dec774451411ec6c32bf5e.zip |
lit: Drop require_and_and support.
llvm-svn: 86447
Diffstat (limited to 'llvm/utils/lit/TestFormats.py')
-rw-r--r-- | llvm/utils/lit/TestFormats.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/utils/lit/TestFormats.py b/llvm/utils/lit/TestFormats.py index fcafe3cc7ae..d7454e6de34 100644 --- a/llvm/utils/lit/TestFormats.py +++ b/llvm/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): |