"boringssl_crypto_tests" is flaky |
|||||
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 .
,
Dec 12 2017
,
Dec 12 2017
,
Dec 12 2017
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 [])
,
Dec 12 2017
,
Dec 12 2017
Sorry for the breakage. Should be fixed now. |
|||||
►
Sign in to add a comment |
|||||
Comment 1 by hajimehoshi@chromium.org
, Dec 12 2017Components: Infra>Client>iOS
Labels: -Sheriff-Chromium OS-iOS
Owner: sergeybe...@chromium.org