| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 # | 4 # |
| 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a | 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a |
| 6 # .json file, with the following exceptions: | 6 # .json file, with the following exceptions: |
| 7 # * all keys must be quoted (use single quotes, please); | 7 # * all keys must be quoted (use single quotes, please); |
| 8 # * comments are allowed, using '#' syntax; and | 8 # * comments are allowed, using '#' syntax; and |
| 9 # * trailing commas are allowed. | 9 # * trailing commas are allowed. |
| 10 # | 10 # |
| 11 # List of files that are known to be non deterministic. This is a "temporary" | 11 # List of files that are known to be non deterministic. This is a "temporary" |
| 12 # workaround to find regression on the deterministic builders. | 12 # workaround to find regression on the deterministic builders. |
| 13 # | 13 # |
| 14 # PNaCl general bug: https://crbug.com/429358 | 14 # PNaCl general bug: https://crbug.com/429358 |
| 15 # | 15 # |
| 16 # TODO(sebmarchand): Remove this once all the files are deterministic. | 16 # TODO(sebmarchand): Remove this once all the files are deterministic. |
| 17 { | 17 { |
| 18 # https://crbug.com/383340 | 18 # https://crbug.com/383340 |
| 19 'android': [ | 19 'android': [ |
| 20 ], | 20 ], |
| 21 | 21 |
| 22 # https://crbug.com/330263 | 22 # https://crbug.com/330263 |
| 23 'linux': [ | 23 'linux': [ |
| 24 # https://crbug.com/654989 | |
| 25 'ppapi_nacl_tests_pnacl_newlib_x32_nonsfi.nexe', | |
| 26 'ppapi_nacl_tests_pnacl_newlib_x64.nexe', | |
| 27 ], | 24 ], |
| 28 | 25 |
| 29 # https://crbug.com/330262 | 26 # https://crbug.com/330262 |
| 30 'mac': [ | 27 'mac': [ |
| 31 'accelerated_widget_mac_unittests', | 28 'accelerated_widget_mac_unittests', |
| 32 'accessibility_unittests', | 29 'accessibility_unittests', |
| 33 'angle_end2end_tests', | 30 'angle_end2end_tests', |
| 34 'angle_unittests', | 31 'angle_unittests', |
| 35 'App Shell', | 32 'App Shell', |
| 36 'app_shell_unittests', | 33 'app_shell_unittests', |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 'views_mus_interactive_ui_tests.exe', | 363 'views_mus_interactive_ui_tests.exe', |
| 367 'views_mus_unittests.exe', | 364 'views_mus_unittests.exe', |
| 368 'views_unittests.exe', | 365 'views_unittests.exe', |
| 369 'webkit_unit_tests.exe', | 366 'webkit_unit_tests.exe', |
| 370 'webtest_library.dll', | 367 'webtest_library.dll', |
| 371 'window_type_launcher_library.dll', | 368 'window_type_launcher_library.dll', |
| 372 'wm_unittests.exe', | 369 'wm_unittests.exe', |
| 373 'wtf_unittests.exe', | 370 'wtf_unittests.exe', |
| 374 ], | 371 ], |
| 375 } | 372 } |
| OLD | NEW |