Changes between Version 5 and Version 6 of NewRunWebKitTests
- Timestamp:
- Jul 7, 2011, 3:11:44 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewRunWebKitTests
v5 v6 42 42 }}} 43 43 44 and when the test completes, you'll get output like:44 and when the test completes, you'll get output something like: 45 45 46 46 {{{ 47 47 % new-run-webkit-tests 48 animations/animation-direction-normal.html -> unexpected text diff mismatch 49 compositing/reflections/nested-reflection-animated.html -> unexpected text diff mismatch 50 51 Retrying 2 unexpected failure(s) ... 52 53 animations/animation-direction-normal.html -> unexpected text diff mismatch 54 compositing/reflections/nested-reflection-animated.html -> unexpected text diff mismatch 55 56 24894 tests ran as expected, 2 didn't: 57 58 Regressions: Unexpected text diff mismatch : (10) 59 animations/animation-direction-normal.html = TEXT 60 compositing/reflections/nested-reflection-animated.html = TEXT 61 62 % echo $? 63 2 64 % 48 65 }}} 49 66 67 In addition, by default, a web browser will be opened to an HTML page displaying the tests that failed, and links to the output from the tests. You can notice a few things about this test output: 68 69 1. Tests that fail are automatically retried, to see if the failure was "flaky" and only happens some of the time. A flaky failure (one that fails then passing during the retry is reported on screen, but does not count as an actual failure. 70 2. The retries are all done serially in a single thread, to avoid any load-related or ordering-related issues that might be contributing to the flakiness. 71 50 72 === More Advanced Scenarios ===