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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 # Issue 3219: | 401 # Issue 3219: |
402 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], | 402 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], |
403 }], # 'arch == arm64 and mode == debug and simulator_run == True' | 403 }], # 'arch == arm64 and mode == debug and simulator_run == True' |
404 | 404 |
405 ############################################################################## | 405 ############################################################################## |
406 ['asan == True', { | 406 ['asan == True', { |
407 # Skip tests not suitable for ASAN. | 407 # Skip tests not suitable for ASAN. |
408 'big-array-literal': [SKIP], | 408 'big-array-literal': [SKIP], |
409 'big-object-literal': [SKIP], | 409 'big-object-literal': [SKIP], |
410 'regress/regress-crbug-178790': [SKIP], | 410 'regress/regress-crbug-178790': [SKIP], |
| 411 |
| 412 # Exception thrown during bootstrapping on ASAN builds, see issue 4236. |
411 'regress/regress-1132': [SKIP], | 413 'regress/regress-1132': [SKIP], |
412 }], # 'asan == True' | 414 }], # 'asan == True' |
413 | 415 |
414 ############################################################################## | 416 ############################################################################## |
415 ['msan == True', { | 417 ['msan == True', { |
416 # Skip tests not suitable for MSAN. | 418 # Skip tests not suitable for MSAN. |
417 'big-array-literal': [SKIP], | 419 'big-array-literal': [SKIP], |
418 # ICU upstream issues. | 420 # ICU upstream issues. |
419 'date': [SKIP], | 421 'date': [SKIP], |
420 'deep-recursion': [SKIP], | 422 'deep-recursion': [SKIP], |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
655 'regress/regress-2653': [SKIP], | 657 'regress/regress-2653': [SKIP], |
656 }], # 'deopt_fuzzer == True' | 658 }], # 'deopt_fuzzer == True' |
657 | 659 |
658 ############################################################################## | 660 ############################################################################## |
659 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 661 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
660 | 662 |
661 # take too long with the simulator. | 663 # take too long with the simulator. |
662 'regress/regress-1132': [SKIP], | 664 'regress/regress-1132': [SKIP], |
663 }], # 'arch == ppc and simulator_run == True' | 665 }], # 'arch == ppc and simulator_run == True' |
664 ] | 666 ] |
OLD | NEW |