| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], | 351 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], |
| 352 }], # 'arch == arm64 and mode == debug and simulator_run == True' | 352 }], # 'arch == arm64 and mode == debug and simulator_run == True' |
| 353 | 353 |
| 354 ############################################################################## | 354 ############################################################################## |
| 355 ['asan == True', { | 355 ['asan == True', { |
| 356 # Skip tests not suitable for ASAN. | 356 # Skip tests not suitable for ASAN. |
| 357 'big-array-literal': [SKIP], | 357 'big-array-literal': [SKIP], |
| 358 'big-object-literal': [SKIP], | 358 'big-object-literal': [SKIP], |
| 359 'regress/regress-crbug-178790': [SKIP], | 359 'regress/regress-crbug-178790': [SKIP], |
| 360 | 360 |
| 361 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
| 362 # The failed allocation causes an asan/msan/tsan error |
| 363 'es6/typedarray-construct-offset-not-smi': [SKIP], |
| 364 |
| 361 # Exception thrown during bootstrapping on ASAN builds, see issue 4236. | 365 # Exception thrown during bootstrapping on ASAN builds, see issue 4236. |
| 362 'regress/regress-1132': [SKIP], | 366 'regress/regress-1132': [SKIP], |
| 363 }], # 'asan == True' | 367 }], # 'asan == True' |
| 364 | 368 |
| 365 ############################################################################## | 369 ############################################################################## |
| 366 ['msan == True', { | 370 ['msan == True', { |
| 367 # Skip tests not suitable for MSAN. | 371 # Skip tests not suitable for MSAN. |
| 368 'big-array-literal': [SKIP], | 372 'big-array-literal': [SKIP], |
| 369 # ICU upstream issues. | 373 # ICU upstream issues. |
| 370 'date': [SKIP], | 374 'date': [SKIP], |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 'lithium/*': [SKIP], | 677 'lithium/*': [SKIP], |
| 674 'third_party/*': [SKIP], | 678 'third_party/*': [SKIP], |
| 675 'tools/*': [SKIP], | 679 'tools/*': [SKIP], |
| 676 'apply': [SKIP], | 680 'apply': [SKIP], |
| 677 'math-*': [SKIP], | 681 'math-*': [SKIP], |
| 678 'unicode-test': [SKIP], | 682 'unicode-test': [SKIP], |
| 679 'whitespaces': [SKIP], | 683 'whitespaces': [SKIP], |
| 680 }], # variant == wasm_traps | 684 }], # variant == wasm_traps |
| 681 | 685 |
| 682 ] | 686 ] |
| OLD | NEW |