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)
+
+