~ahasenack/landscape-client/intrepid-sru-347983

1 by Christopher Armstrong
Import landscape-client into public branch
1
#!/usr/bin/env python
2
import sys
3
import os
4
121.1.1 by Gustavo Niemeyer
Replaced test runner by a very simple wrapper which calls trial.
5
6
def main(args):
7
    for arg in args:
8
        if arg.startswith("landscape"):
9
            break
10
    else:
11
        args.append("landscape")
12
    os.execvp("trial", ["trial", "-r", "glib2"] + args)
1 by Christopher Armstrong
Import landscape-client into public branch
13
 
14
15
if __name__ == "__main__":
121.1.1 by Gustavo Niemeyer
Replaced test runner by a very simple wrapper which calls trial.
16
    main(sys.argv[1:])
17
1 by Christopher Armstrong
Import landscape-client into public branch
18
19
# vim:ts=4:sw=4:et