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

Issue 793450 link

Starred by 1 user

Issue metadata

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



Sign in to add a comment

"boringssl_crypto_tests" is flaky

Project Member Reported by chromium...@appspot.gserviceaccount.com, Dec 8 2017

Issue description

"boringssl_crypto_tests" is flaky.

This issue was created automatically by the chromium-try-flakes app. Please find the right owner to fix the respective test/step and assign this issue to them. If the step/test is infrastructure-related, please add Infra-Troopers label and change issue status to Untriaged. When done, please remove the issue from Sheriff Bug Queue by removing the Sheriff-Chromium label.

We have detected 8 recent flakes. List of all flakes can be found at https://chromium-try-flakes.appspot.com/all_flake_occurrences?key=ahVzfmNocm9taXVtLXRyeS1mbGFrZXNyIQsSBUZsYWtlIhZib3Jpbmdzc2xfY3J5cHRvX3Rlc3RzDA.

The chromium-try-flakes app is able to file bugs for individual tests when the test launcher is uploading results to the Test Results Server. If recent flakes above are caused by failing tests and you would like to have them filed as invidual bugs, please read more at https://goo.gl/QJKXV4.

This flaky test/step was previously tracked in  issue 709374 .
 
Cc: baxley@chromium.org lod@chromium.org sdefresne@chromium.org
Components: Infra>Client>iOS
Labels: -Sheriff-Chromium OS-iOS
Owner: sergeybe...@chromium.org
CC today's iOS sheriffs

sergeyberezin@, could you take a look? Thanks,

Labels: Infra-Troopers
Cc: sergeybe...@chromium.org
 Issue 793250  has been merged into this issue.
Owner: huangml@chromium.org
Status: Assigned (was: Untriaged)
An example task: https://chromium-swarm.appspot.com/task?id=3a51974070e2d910 fails with this crash:

Traceback (most recent call last):
  File "src/ios/build/bots/scripts/run.py", line 220, in <module>
    sys.exit(main())
  File "src/ios/build/bots/scripts/run.py", line 30, in main
    args, test_args = parse_args()
  File "src/ios/build/bots/scripts/run.py", line 212, in parse_args
    args.test_cases.extend(args_json.get('test_cases', []))
TypeError: 'NoneType' object is not iterable

The `test_cases` arg was introduced in this CL: https://crrev.com/c/807356

+huangml@ - could you take a look? It seems the args_json contains {'test_cases': None}

>>> [].extend({'a': None}.get('a', []))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'NoneType' object is not iterable

We should guard against that, e.g. this passes:

>>> [].extend({'a': None}.get('a', []) or [])

Components: -Infra>Client>iOS
Labels: -Infra-Troopers
Status: Fixed (was: Assigned)
Sorry for the breakage.  Should be fixed now.

Sign in to add a comment