remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / utils / lit / ShTest.py
blobfefdf7602b269a6a505ba6abdda5c6ccd5635bcc
1 import TestRunner
3 class ShTest:
4 def __init__(self, execute_external = False, require_and_and = False):
5 self.execute_external = execute_external
6 self.require_and_and = require_and_and
8 def execute(self, test, litConfig):
9 return TestRunner.executeShTest(test, litConfig,
10 self.execute_external,
11 self.require_and_and)