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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: test/mjsunit/mjsunit.status
diff --git a/test/mjsunit/mjsunit.status b/test/mjsunit/mjsunit.status
index be683e1e143fd84e8109de921b84fff1cee5f0b8..eb90464d809ae362eed29c21e5c37b394873e6a4 100644
--- a/test/mjsunit/mjsunit.status
+++ b/test/mjsunit/mjsunit.status
@@ -339,6 +339,15 @@
'getters-on-elements': [PASS, ['gc_stress == True', FAIL]],
}], # 'arch == arm64 and mode == debug and simulator_run == True'
+['arch == arm and simulator_run == True or arch == ppc and simulator_run == True', {
+ # Because of how allocations in the simulator work, the allocator
+ # assumes address space to be in the signed int32 range, because of
+ # this when using a large offset the computation exceeds a signed
+ # 32-bit type, the addresses wrap around and hit DCHECKS which
+ # work as expected on hardware.
+ 'wasm/large-offset': [SKIP],
+}], # 'arch == arm and simulator_run == True or arch == ppc and simulator_run == True'
+
##############################################################################
['asan == True', {
# Skip tests not suitable for ASAN.

Powered by Google App Engine
This is Rietveld 408576698