New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 713267 link

Starred by 1 user

Issue metadata

Status: Fixed
Owner:
Last visit > 30 days ago
Closed: Apr 2017
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug

Blocking:
issue 699120



Sign in to add a comment

recipes.py test should error on duplicate test names

Project Member Reported by bore...@google.com, Apr 19 2017

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.
 
Blocking: 699120
Owner: phajdan.jr@chromium.org
Status: Started (was: Untriaged)
Status: Fixed (was: Started)
This is fixed now with https://codereview.chromium.org/2828823003/ .

Sign in to add a comment