Test running only failing tests in two variants.
(self)
| 128 | result.has_returncode(0) |
| 129 | |
| 130 | def testFail(self): |
| 131 | """Test running only failing tests in two variants.""" |
| 132 | result = self.run_tests( |
| 133 | '--progress=verbose', |
| 134 | '--variants=default,stress', |
| 135 | 'sweet/strawberries', |
| 136 | infra_staging=False, |
| 137 | ) |
| 138 | result.stdout_includes('sweet/strawberries default: FAIL') |
| 139 | result.has_returncode(1) |
| 140 | |
| 141 | def testGN(self): |
| 142 | """Test setup with legacy GN out dir.""" |
nothing calls this directly
no test coverage detected