Changes in src/tests/test.py [b5f9829:b706db1]
- File:
-
- 1 edited
-
src/tests/test.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/test.py
rb5f9829 rb706db1 221 221 if retcode == TestResult.SUCCESS: result_txt = "Done" 222 222 elif retcode == TestResult.TIMEOUT: result_txt = "TIMEOUT" 223 else : result_txt = "ERROR "223 else : result_txt = "ERROR code %d" % retcode 224 224 else : 225 225 if retcode == TestResult.SUCCESS: result_txt = "PASSED" 226 226 elif retcode == TestResult.TIMEOUT: result_txt = "TIMEOUT" 227 else : result_txt = "FAILED "227 else : result_txt = "FAILED with code %d" % retcode 228 228 229 229 #print result with error if needed
Note:
See TracChangeset
for help on using the changeset viewer.