diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-05-29 20:26:14 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-05-29 20:26:14 +0200 |
commit | 1c1aee40f87920237512e4a10e82459aad52bb82 (patch) | |
tree | 3313831d3f055e70140b39aa4c5decf570b30014 /pms-tester | |
parent | Add a minimal D-Bus module. (diff) | |
download | pms-test-suite-1c1aee40f87920237512e4a10e82459aad52bb82.tar.gz pms-test-suite-1c1aee40f87920237512e4a10e82459aad52bb82.tar.bz2 pms-test-suite-1c1aee40f87920237512e4a10e82459aad52bb82.zip |
Add an initial code for TestRunner (no-op).
Diffstat (limited to 'pms-tester')
-rwxr-xr-x | pms-tester | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pms-tester b/pms-tester new file mode 100755 index 0000000..ededbef --- /dev/null +++ b/pms-tester @@ -0,0 +1,12 @@ +#!/usr/bin/python +# vim:fileencoding=utf-8 +# (c) 2011 Michał Górny <mgorny@gentoo.org> +# Released under the terms of the 2-clause BSD license. + +import sys + +from PMSTestSuite.testrunner import TestRunnerCLI + +if __name__ == '__main__': + cli = TestRunnerCLI() + sys.exit(cli.main(sys.argv)) |