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