| 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 'array-constructor': [PASS, SLOW], | 384 'array-constructor': [PASS, SLOW], |
| 385 'json': [PASS, SLOW], | 385 'json': [PASS, SLOW], |
| 386 'regress/regress-446389': [PASS, SLOW], | 386 'regress/regress-446389': [PASS, SLOW], |
| 387 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], | 387 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], |
| 388 | 388 |
| 389 # BUG(v8:3097) | 389 # BUG(v8:3097) |
| 390 'debug-references': [SKIP], | 390 'debug-references': [SKIP], |
| 391 | 391 |
| 392 # BUG(v8:4754). | 392 # BUG(v8:4754). |
| 393 'debug-referenced-by': [PASS, NO_VARIANTS], | 393 'debug-referenced-by': [PASS, NO_VARIANTS], |
| 394 |
| 395 # BUG(v8:4779): Crashes flakily with stress mode on arm64. |
| 396 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], |
| 394 }], # 'gc_stress == True' | 397 }], # 'gc_stress == True' |
| 395 | 398 |
| 396 ############################################################################## | 399 ############################################################################## |
| 397 ['no_i18n == True and mode == debug', { | 400 ['no_i18n == True and mode == debug', { |
| 398 # Tests too slow for no18n debug. | 401 # Tests too slow for no18n debug. |
| 399 'regress/regress-1200351': [SKIP], | 402 'regress/regress-1200351': [SKIP], |
| 400 }], # 'no_i18n == True and mode == debug' | 403 }], # 'no_i18n == True and mode == debug' |
| 401 | 404 |
| 402 ############################################################################## | 405 ############################################################################## |
| 403 ['byteorder == big', { | 406 ['byteorder == big', { |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 # Tests taking too long. | 930 # Tests taking too long. |
| 928 'array-functions-prototype-misc': [SKIP], | 931 'array-functions-prototype-misc': [SKIP], |
| 929 'strong/implicit-conversions': [SKIP], | 932 'strong/implicit-conversions': [SKIP], |
| 930 'strong/load-element-mutate-backing-store': [SKIP], | 933 'strong/load-element-mutate-backing-store': [SKIP], |
| 931 | 934 |
| 932 # Stack overflow. | 935 # Stack overflow. |
| 933 'big-array-literal': [SKIP], | 936 'big-array-literal': [SKIP], |
| 934 }], # 'gcov_coverage' | 937 }], # 'gcov_coverage' |
| 935 | 938 |
| 936 ] | 939 ] |
| OLD | NEW |