Returns an ASAN copy of this suite.
(self)
| 313 | return r |
| 314 | |
| 315 | def asan(self): |
| 316 | """Returns an ASAN copy of this suite.""" |
| 317 | r = self.copy(self.name + "_ASAN", REBUILD_ASAN="true") |
| 318 | r.timeout_minutes = self.timeout_minutes * 2.0 + 10 |
| 319 | return r |
| 320 | |
| 321 | def sharded(self, shards): |
| 322 | """Returns a list of sharded copies of the list. |