Returns an "exhaustive" copy of the suite.
(self)
| 307 | return ret |
| 308 | |
| 309 | def exhaustive(self): |
| 310 | """Returns an "exhaustive" copy of the suite.""" |
| 311 | r = self.copy(self.name + "_EXHAUSTIVE", EXPLORATION_STRATEGY="exhaustive") |
| 312 | r.timeout_minutes = 240 |
| 313 | return r |
| 314 | |
| 315 | def asan(self): |
| 316 | """Returns an ASAN copy of this suite.""" |