Changeset 93151 in vbox
- Timestamp:
- Jan 9, 2022 1:49:42 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/txsclient.py
r93115 r93151 922 922 # Parse the exit status (True), abort (None) or do nothing (False). 923 923 if rc is True: 924 if sOpcode != 'PROC OK': 924 if sOpcode == 'PROC OK': 925 pass; 926 else: 927 rc = False; 925 928 # Do proper parsing some other day if needed: 926 929 # PROC TOK, PROC TOA, PROC DWN, PROC DOO, 927 930 # PROC NOK + rc, PROC SIG + sig, PROC ABD, FAILED. 928 rc = False; 931 if sOpcode == 'PROC DOO': 932 reporter.log('taskExecEx: PROC DOO[fus]: %s' % (abPayload,)); 933 929 934 else: 930 935 if rc is None:
Note:
See TracChangeset
for help on using the changeset viewer.