Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: test/mjsunit/mjsunit.status

Issue 2903153002: [wasm] Increase WebAssembly.Memory maximum size to ~2GB (Closed)
Patch Set: Eric's review Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 'packed-elements': [SKIP], 332 'packed-elements': [SKIP],
333 'regexp-global': [SKIP], 333 'regexp-global': [SKIP],
334 'math-floor-of-div': [PASS, SLOW], 334 'math-floor-of-div': [PASS, SLOW],
335 'math-floor-of-div-nosudiv': [PASS, SLOW], 335 'math-floor-of-div-nosudiv': [PASS, SLOW],
336 'unicodelctest': [PASS, SLOW], 336 'unicodelctest': [PASS, SLOW],
337 'unicodelctest-no-optimization': [PASS, SLOW], 337 'unicodelctest-no-optimization': [PASS, SLOW],
338 # Issue 3219: 338 # Issue 3219:
339 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], 339 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]],
340 }], # 'arch == arm64 and mode == debug and simulator_run == True' 340 }], # 'arch == arm64 and mode == debug and simulator_run == True'
341 341
342 ['arch == arm and simulator_run == True or arch == ppc and simulator_run == True ', {
343 # Because of how allocations in the simulator work, the allocator
344 # assumes address space to be in the signed int32 range, because of
345 # this when using a large offset the computation exceeds a signed
346 # 32-bit type, the addresses wrap around and hit DCHECKS which
347 # work as expected on hardware.
348 'wasm/large-offset': [SKIP],
349 }], # 'arch == arm and simulator_run == True or arch == ppc and simulator_run = = True'
350
342 ############################################################################## 351 ##############################################################################
343 ['asan == True', { 352 ['asan == True', {
344 # Skip tests not suitable for ASAN. 353 # Skip tests not suitable for ASAN.
345 'big-array-literal': [SKIP], 354 'big-array-literal': [SKIP],
346 'big-object-literal': [SKIP], 355 'big-object-literal': [SKIP],
347 'regress/regress-crbug-178790': [SKIP], 356 'regress/regress-crbug-178790': [SKIP],
348 357
349 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 358 # https://bugs.chromium.org/p/v8/issues/detail?id=4639
350 # The failed allocation causes an asan/msan/tsan error 359 # The failed allocation causes an asan/msan/tsan error
351 'es6/typedarray-construct-offset-not-smi': [SKIP], 360 'es6/typedarray-construct-offset-not-smi': [SKIP],
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 'lithium/*': [SKIP], 657 'lithium/*': [SKIP],
649 'third_party/*': [SKIP], 658 'third_party/*': [SKIP],
650 'tools/*': [SKIP], 659 'tools/*': [SKIP],
651 'apply': [SKIP], 660 'apply': [SKIP],
652 'math-*': [SKIP], 661 'math-*': [SKIP],
653 'unicode-test': [SKIP], 662 'unicode-test': [SKIP],
654 'whitespaces': [SKIP], 663 'whitespaces': [SKIP],
655 }], # variant == wasm_traps 664 }], # variant == wasm_traps
656 665
657 ] 666 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698