blob: 96adbe4875bafc978919b2e1f2c3ce8ef52cf380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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.cli import PMSTestSuiteCLI
if __name__ == '__main__':
cli = PMSTestSuiteCLI()
sys.exit(cli.main(sys.argv))
|