| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], | 252 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], |
| 253 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], | 253 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], |
| 254 | 254 |
| 255 # BUG(v8:4458). TODO(mvstanton): reenable the test once --vector-stores is | 255 # BUG(v8:4458). TODO(mvstanton): reenable the test once --vector-stores is |
| 256 # prermanently enabled. | 256 # prermanently enabled. |
| 257 'call-counts': [SKIP], | 257 'call-counts': [SKIP], |
| 258 | 258 |
| 259 # Slow tests. | 259 # Slow tests. |
| 260 'copy-on-write-assert': [PASS, SLOW], | 260 'copy-on-write-assert': [PASS, SLOW], |
| 261 'debug-scopes': [PASS, SLOW], | 261 'debug-scopes': [PASS, SLOW], |
| 262 'es7/object-observe': [PASS, ['mode == debug', SLOW]], | |
| 263 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], | 262 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], |
| 264 'readonly': [PASS, SLOW], | 263 'readonly': [PASS, SLOW], |
| 265 'regress/regress-1200351': [PASS, ['mode == debug', SLOW]], | 264 'regress/regress-1200351': [PASS, ['mode == debug', SLOW]], |
| 266 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], | 265 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], |
| 267 'es6/tail-call-megatest*': [PASS, FAST_VARIANTS], | 266 'es6/tail-call-megatest*': [PASS, FAST_VARIANTS], |
| 268 | 267 |
| 269 # TODO(titzer): ASM->WASM tests on these platforms | 268 # TODO(titzer): ASM->WASM tests on these platforms |
| 270 'wasm/asm-wasm': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips64el]
', SKIP]], | 269 'wasm/asm-wasm': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips64el]
', SKIP]], |
| 271 # TODO(branelson): Figure out why ignition + asm-wasm-stdlib fails. | 270 # TODO(branelson): Figure out why ignition + asm-wasm-stdlib fails. |
| 272 'wasm/asm-wasm-stdlib': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el] or ignition == True', SKIP]], | 271 'wasm/asm-wasm-stdlib': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el] or ignition == True', SKIP]], |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 ############################################################################## | 849 ############################################################################## |
| 851 ['gcov_coverage', { | 850 ['gcov_coverage', { |
| 852 # Tests taking too long. | 851 # Tests taking too long. |
| 853 'array-functions-prototype-misc': [SKIP], | 852 'array-functions-prototype-misc': [SKIP], |
| 854 | 853 |
| 855 # Stack overflow. | 854 # Stack overflow. |
| 856 'big-array-literal': [SKIP], | 855 'big-array-literal': [SKIP], |
| 857 }], # 'gcov_coverage' | 856 }], # 'gcov_coverage' |
| 858 | 857 |
| 859 ] | 858 ] |
| OLD | NEW |