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

Side by Side Diff: test/mjsunit/wasm/embenchen/primes.js

Issue 1724043002: Re-enable validation for asm->wasm embechen tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « test/mjsunit/wasm/embenchen/memops.js ('k') | test/mjsunit/wasm/embenchen/zlib.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 // Modified embenchen to direct to asm-wasm. 1 // Modified embenchen to direct to asm-wasm.
2 // Flags: --expose-wasm 2 // Flags: --expose-wasm
3 // TODO(mtrofin): Drop when verifier is fixed.
4 // Flags: --noturbo-verify-allocation
5 3
6 var EXPECTED_OUTPUT = 'lastprime: 387677.\n'; 4 var EXPECTED_OUTPUT = 'lastprime: 387677.\n';
7 var Module = { 5 var Module = {
8 arguments: [1], 6 arguments: [1],
9 print: function(x) {Module.printBuffer += x + '\n';}, 7 print: function(x) {Module.printBuffer += x + '\n';},
10 preRun: [function() {Module.printBuffer = ''}], 8 preRun: [function() {Module.printBuffer = ''}],
11 postRun: [function() { 9 postRun: [function() {
12 assertEquals(EXPECTED_OUTPUT, Module.printBuffer); 10 assertEquals(EXPECTED_OUTPUT, Module.printBuffer);
13 }], 11 }],
14 }; 12 };
(...skipping 5966 matching lines...) Expand 10 before | Expand all | Expand 10 after
5981 } 5979 }
5982 5980
5983 // shouldRunNow refers to calling main(), not run(). 5981 // shouldRunNow refers to calling main(), not run().
5984 var shouldRunNow = true; 5982 var shouldRunNow = true;
5985 if (Module['noInitialRun']) { 5983 if (Module['noInitialRun']) {
5986 shouldRunNow = false; 5984 shouldRunNow = false;
5987 } 5985 }
5988 5986
5989 5987
5990 run([].concat(Module["arguments"])); 5988 run([].concat(Module["arguments"]));
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/embenchen/memops.js ('k') | test/mjsunit/wasm/embenchen/zlib.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698