| | #!/usr/bin/env python |
---|
| | # Copyright (c) 2003-2004 TundraWare Inc. All Rights Reserved. |
---|
| | |
---|
| | PROGNAME = "tconfpy Test Driver" |
---|
| | RCSID = "$Id: test-tc.py,v 1.107 2004/03/13 00:25:58 tundra Exp $" |
---|
| | RCSID = "$Id: test-tc.py,v 1.108 2004/03/13 01:01:44 tundra Exp $" |
---|
| | VERSION = RCSID.split()[2] |
---|
| | |
---|
| | # Copyright Information |
---|
| | |
---|
| |
---|
| | DEBUG = False |
---|
| | |
---|
| | if len(sys.argv) < 2: |
---|
| | print BANNER |
---|
| | print "Usage: test.py [debug] file file ..." |
---|
| | print "Usage: test-tc.py [debug] file file ..." |
---|
| | sys.exit(1) |
---|
| | |
---|
| | if sys.argv[1].lower() == "debug": |
---|
| | files = 2 |
---|
| |
---|
| | |