| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 | 400 |
| 401 ############################################################################## | 401 ############################################################################## |
| 402 ['asan == True', { | 402 ['asan == True', { |
| 403 # Skip tests not suitable for ASAN. | 403 # Skip tests not suitable for ASAN. |
| 404 'big-array-literal': [SKIP], | 404 'big-array-literal': [SKIP], |
| 405 'big-object-literal': [SKIP], | 405 'big-object-literal': [SKIP], |
| 406 'regress/regress-crbug-178790': [SKIP], | 406 'regress/regress-crbug-178790': [SKIP], |
| 407 }], # 'asan == True' | 407 }], # 'asan == True' |
| 408 | 408 |
| 409 ############################################################################## | 409 ############################################################################## |
| 410 ['msan == True', { |
| 411 # Skip tests not suitable for MSAN. |
| 412 'big-array-literal': [SKIP], |
| 413 }], # 'asan == True' |
| 414 |
| 415 ############################################################################## |
| 410 ['arch == arm or arch == android_arm', { | 416 ['arch == arm or arch == android_arm', { |
| 411 | 417 |
| 412 # Slow tests which times out in debug mode. | 418 # Slow tests which times out in debug mode. |
| 413 'try': [PASS, ['mode == debug', SKIP]], | 419 'try': [PASS, ['mode == debug', SKIP]], |
| 414 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 420 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
| 415 'array-constructor': [PASS, ['mode == debug', SKIP]], | 421 'array-constructor': [PASS, ['mode == debug', SKIP]], |
| 416 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], | 422 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], |
| 417 | 423 |
| 418 # Flaky test that can hit compilation-time stack overflow in debug mode. | 424 # Flaky test that can hit compilation-time stack overflow in debug mode. |
| 419 'unicode-test': [PASS, ['mode == debug', PASS, FAIL]], | 425 'unicode-test': [PASS, ['mode == debug', PASS, FAIL]], |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 'regress/regress-2653': [SKIP], | 648 'regress/regress-2653': [SKIP], |
| 643 }], # 'deopt_fuzzer == True' | 649 }], # 'deopt_fuzzer == True' |
| 644 | 650 |
| 645 ############################################################################## | 651 ############################################################################## |
| 646 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 652 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 647 | 653 |
| 648 # take too long with the simulator. | 654 # take too long with the simulator. |
| 649 'regress/regress-1132': [SKIP], | 655 'regress/regress-1132': [SKIP], |
| 650 }], # 'arch == ppc and simulator_run == True' | 656 }], # 'arch == ppc and simulator_run == True' |
| 651 ] | 657 ] |
| OLD | NEW |