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

Side by Side Diff: test/mjsunit/wasm/module-memory.js

Issue 1537643002: Add --enable-wasm to wasm tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « test/mjsunit/wasm/instantiate-module-basic.js ('k') | test/mjsunit/wasm/params.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --expose-gc --stress-compaction 5 // Flags: --expose-wasm --expose-gc --stress-compaction
6 6
7 load("test/mjsunit/wasm/wasm-constants.js"); 7 load("test/mjsunit/wasm/wasm-constants.js");
8 8
9 var kMemSize = 4096; 9 var kMemSize = 4096;
10 10
11 function genModule(memory) { 11 function genModule(memory) {
12 var kBodySize = 27; 12 var kBodySize = 27;
13 var kNameMainOffset = 28 + kBodySize + 1; 13 var kNameMainOffset = 28 + kBodySize + 1;
14 14
15 var data = bytes( 15 var data = bytes(
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 } 172 }
173 173
174 174
175 for (offset = 4093; offset < 4124; offset++) { 175 for (offset = 4093; offset < 4124; offset++) {
176 assertTraps(kTrapMemOutOfBounds, read); 176 assertTraps(kTrapMemOutOfBounds, read);
177 assertTraps(kTrapMemOutOfBounds, write); 177 assertTraps(kTrapMemOutOfBounds, write);
178 } 178 }
179 } 179 }
180 180
181 testOOBThrows(); 181 testOOBThrows();
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/instantiate-module-basic.js ('k') | test/mjsunit/wasm/params.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698