commit | a213a427aa19260bb8145ea59f485ea01653c0bb | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Tue Sep 08 05:31:18 2009 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Tue Sep 08 05:31:18 2009 +0000 |
tree | 723a0ecb29b8da189bd16362f99bdadf3809a8f0 | |
parent | ba7cdde020fc6e83d982d6f1743bcd1adf1a0f00 [diff] [blame] |
Add 'lit' testing tool. - make install && man $(llvm-config --prefix)/share/man/man1/lit.1 for more information. llvm-svn: 81190
diff --git a/llvm/utils/lit/TclTest.py b/llvm/utils/lit/TclTest.py new file mode 100644 index 0000000..e79f179 --- /dev/null +++ b/llvm/utils/lit/TclTest.py
@@ -0,0 +1,7 @@ +import TestRunner + +class TclTest: + def execute(self, test, litConfig): + return TestRunner.executeTclTest(test, litConfig) + +