summaryrefslogtreecommitdiffstats
path: root/test-framework/tests/simpletest.py
diff options
context:
space:
mode:
Diffstat (limited to 'test-framework/tests/simpletest.py')
-rw-r--r--test-framework/tests/simpletest.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-framework/tests/simpletest.py b/test-framework/tests/simpletest.py
new file mode 100644
index 000000000..5a320191a
--- /dev/null
+++ b/test-framework/tests/simpletest.py
@@ -0,0 +1,11 @@
+import sys
+from testrunner import testrunner
+
+class Result:
+ def addError( self, errstr ):
+ print errstr
+
+
+result = Result()
+runner = testrunner.TestRunner( sys.argv[1], result )
+runner.run()