summaryrefslogtreecommitdiffstats
path: root/tests/test-framework/tests/simpletest.py
blob: 5a320191a3b5f35b3022ed0465f0f525c21b6a95 (plain)
1
2
3
4
5
6
7
8
9
10
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()