Changeset 70615 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Jan 17, 2018 8:28:16 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120337
- Location:
- trunk/src/VBox/ValidationKit/testdriver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/tst-txsclient.py
r70611 r70615 75 75 fReversedSetup = False; 76 76 fReboot = False; 77 fShutdown = False; 77 78 fStdTests = True; 78 79 … … 93 94 elif asArgs[i] == '--reboot': 94 95 fReboot = True; 96 fShutdown = False; 97 fStdTests = False; 98 i = i + 1; 99 elif asArgs[i] == '--shutdown': 100 fShutdown = True; 101 fReboot = False; 95 102 fStdTests = False; 96 103 i = i + 1; 97 104 elif asArgs[i] == '--help': 98 print('tst-txsclient.py [--hostname <addr|name>] [--port <num>] [--timeout <cMS>] [--reboot] [--reversed-setup]'); 105 print('tst-txsclient.py [--hostname <addr|name>] [--port <num>] [--timeout <cMS>] ' 106 '[--reboot|--shutdown] [--reversed-setup]'); 99 107 return 0; 100 108 else: … … 276 284 rc = oSession.syncReboot(); 277 285 print('%s: REBOOT() -> %s' % (boolRes(rc), rc)); 286 elif fShutdown: 287 print('TESTING: syncShutdown...'); 288 rc = oSession.syncShutdown(); 289 print('%s: SHUTDOWN() -> %s' % (boolRes(rc), rc)); 290 278 291 279 292 if g_cFailures != 0: -
trunk/src/VBox/ValidationKit/testdriver/txsclient.py
r70611 r70615 1381 1381 1382 1382 # 1383 # Public methods - filesystem1383 # Public methods - system 1384 1384 # 1385 1385
Note:
See TracChangeset
for help on using the changeset viewer.