| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 # Issue 3219: | 389 # Issue 3219: |
| 390 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], | 390 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], |
| 391 }], # 'arch == arm64 and mode == debug and simulator_run == True' | 391 }], # 'arch == arm64 and mode == debug and simulator_run == True' |
| 392 | 392 |
| 393 ############################################################################## | 393 ############################################################################## |
| 394 ['asan == True', { | 394 ['asan == True', { |
| 395 # Skip tests not suitable for ASAN. | 395 # Skip tests not suitable for ASAN. |
| 396 'big-array-literal': [SKIP], | 396 'big-array-literal': [SKIP], |
| 397 'big-object-literal': [SKIP], | 397 'big-object-literal': [SKIP], |
| 398 'regress/regress-crbug-178790': [SKIP], | 398 'regress/regress-crbug-178790': [SKIP], |
| 399 | |
| 400 # FIXME(svenpanne,titzer): Skipped until leak-free. | |
| 401 'asm/sqlite3/*': [SKIP], | |
| 402 }], # 'asan == True' | 399 }], # 'asan == True' |
| 403 | 400 |
| 404 ############################################################################## | 401 ############################################################################## |
| 405 ['arch == arm or arch == android_arm', { | 402 ['arch == arm or arch == android_arm', { |
| 406 | 403 |
| 407 # Slow tests which times out in debug mode. | 404 # Slow tests which times out in debug mode. |
| 408 'try': [PASS, ['mode == debug', SKIP]], | 405 'try': [PASS, ['mode == debug', SKIP]], |
| 409 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 406 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
| 410 'array-constructor': [PASS, ['mode == debug', SKIP]], | 407 'array-constructor': [PASS, ['mode == debug', SKIP]], |
| 411 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], | 408 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 'regress/regress-2653': [SKIP], | 634 'regress/regress-2653': [SKIP], |
| 638 }], # 'deopt_fuzzer == True' | 635 }], # 'deopt_fuzzer == True' |
| 639 | 636 |
| 640 ############################################################################## | 637 ############################################################################## |
| 641 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 638 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 642 | 639 |
| 643 # take too long with the simulator. | 640 # take too long with the simulator. |
| 644 'regress/regress-1132': [SKIP], | 641 'regress/regress-1132': [SKIP], |
| 645 }], # 'arch == ppc and simulator_run == True' | 642 }], # 'arch == ppc and simulator_run == True' |
| 646 ] | 643 ] |
| OLD | NEW |