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

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

Issue 2771183002: [wasm][asm.js] Fix and enable several asm.js tests with the new parser. (Closed)
Patch Set: Created 3 years, 9 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 // Modified embenchen to direct to asm-wasm. 1 // Modified embenchen to direct to asm-wasm.
2 // Flags: --validate-asm --allow-natives-syntax 2 // Flags: --validate-asm --allow-natives-syntax --fast-validate-asm
3 3
4 var EXPECTED_OUTPUT = 4 var EXPECTED_OUTPUT =
5 '123456789\n' + 5 '123456789\n' +
6 '213456789\n' + 6 '213456789\n' +
7 '231456789\n' + 7 '231456789\n' +
8 '321456789\n' + 8 '321456789\n' +
9 '312456789\n' + 9 '312456789\n' +
10 '132456789\n' + 10 '132456789\n' +
11 '234156789\n' + 11 '234156789\n' +
12 '324156789\n' + 12 '324156789\n' +
(...skipping 8418 matching lines...) Expand 10 before | Expand all | Expand 10 after
8431 } 8431 }
8432 8432
8433 // shouldRunNow refers to calling main(), not run(). 8433 // shouldRunNow refers to calling main(), not run().
8434 var shouldRunNow = true; 8434 var shouldRunNow = true;
8435 if (Module['noInitialRun']) { 8435 if (Module['noInitialRun']) {
8436 shouldRunNow = false; 8436 shouldRunNow = false;
8437 } 8437 }
8438 8438
8439 8439
8440 run([].concat(Module["arguments"])); 8440 run([].concat(Module["arguments"]));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698