recipes.py test should error on duplicate test names |
|
Issue description
recipes.py test should error on duplicate test names
eg.
def GenTests(api):
yield (
api.test('my-test') +
...
)
...
yield (
api.test('my-test') +
...
)
The results of one test overwrite the other, depending on the order in which they run.
,
Apr 20 2017
|
|
►
Sign in to add a comment |
|
Comment 1 by phajdan.jr@chromium.org
, Apr 19 2017Owner: phajdan.jr@chromium.org
Status: Started (was: Untriaged)