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 259 matching lines...) Loading... |
270 'wasm/asm-wasm': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips64el]
', SKIP]], | 270 'wasm/asm-wasm': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips64el]
', SKIP]], |
271 # TODO(branelson): Figure out why ignition + asm-wasm-stdlib fails. | 271 # 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]], | 272 'wasm/asm-wasm-stdlib': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el] or ignition == True', SKIP]], |
273 'wasm/asm-wasm-literals': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64,
mips64el] or ignition == True', SKIP]], | 273 'wasm/asm-wasm-literals': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64,
mips64el] or ignition == True', SKIP]], |
274 'wasm/asm-wasm-copy': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips
64el]', SKIP]], | 274 'wasm/asm-wasm-copy': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips
64el]', SKIP]], |
275 'wasm/asm-wasm-deopt': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mip
s64el]', SKIP]], | 275 'wasm/asm-wasm-deopt': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mip
s64el]', SKIP]], |
276 | 276 |
277 # TODO(branelson): Figure out why ignition + asm->wasm fails embenchen. | 277 # TODO(branelson): Figure out why ignition + asm->wasm fails embenchen. |
278 'wasm/embenchen/*': [PASS, ['arch == arm64', SKIP], ['ignition == True', SKIP]
], | 278 'wasm/embenchen/*': [PASS, ['arch == arm64', SKIP], ['ignition == True', SKIP]
], |
279 | 279 |
280 # TODO(bradnelson) Fix and re-enable. | |
281 'wasm/embenchen/box2d': [SKIP], # hang | |
282 'wasm/embenchen/lua_binarytrees': [SKIP], # fails decode | |
283 #'wasm/embenchen/zlib': [SKIP], # fails gc-stress | |
284 | |
285 # case-insensitive unicode regexp relies on case mapping provided by ICU. | 280 # case-insensitive unicode regexp relies on case mapping provided by ICU. |
286 'harmony/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], | 281 'harmony/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], |
287 'harmony/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]]
, | 282 'harmony/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]]
, |
288 # desugaring regexp property class relies on ICU. | 283 # desugaring regexp property class relies on ICU. |
289 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], | 284 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], |
290 }], # ALWAYS | 285 }], # ALWAYS |
291 | 286 |
292 ['novfp3 == True', { | 287 ['novfp3 == True', { |
293 'asm/embenchen/box2d': [SKIP], | 288 'asm/embenchen/box2d': [SKIP], |
294 'asm/embenchen/zlib': [SKIP], | 289 'asm/embenchen/zlib': [SKIP], |
(...skipping 615 matching lines...) Loading... |
910 ############################################################################## | 905 ############################################################################## |
911 ['gcov_coverage', { | 906 ['gcov_coverage', { |
912 # Tests taking too long. | 907 # Tests taking too long. |
913 'array-functions-prototype-misc': [SKIP], | 908 'array-functions-prototype-misc': [SKIP], |
914 | 909 |
915 # Stack overflow. | 910 # Stack overflow. |
916 'big-array-literal': [SKIP], | 911 'big-array-literal': [SKIP], |
917 }], # 'gcov_coverage' | 912 }], # 'gcov_coverage' |
918 | 913 |
919 ] | 914 ] |
OLD | NEW |