blob: 832783836610b3af8081003572bfebf7cde170c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# selftest main code.
########################################################################
# main test entry point
def cmd_test(opt):
'''Run the full test suite'''
print "Starting full test"
########################################################################
# main test entry point
def cmd_quicktest(opt):
'''Run the quick test suite'''
print "Starting quick test"
def set_options(opt):
opt.ADD_COMMAND('test', cmd_test)
opt.ADD_COMMAND('quicktest', cmd_quicktest)
|