(result_interpreted)==(result_compiled) in wasm-code.cc |
||||||
Issue descriptionDetailed report: https://cluster-fuzz.appspot.com/testcase?key=5147683918708736 Fuzzer: afl_v8_wasm_code_fuzzer Job Type: afl_chrome_asan Platform Id: linux Crash Type: CHECK failure Crash Address: Crash State: (result_interpreted)==(result_compiled) in wasm-code.cc Regressed: https://cluster-fuzz.appspot.com/revisions?job=afl_chrome_asan&range=418554:418622 Minimized Testcase (0.02 Kb): https://cluster-fuzz.appspot.com/download/AMIfv97XQZSmhKKuOoG70miXSSOEnRUhT-J7ZKSMCJmEUIycmWY5Mob3Jk9Nn1SIsOHtVwG6iyQFGwe4e_jbwokXYBwM2hPlDTebH23tz7z1DSBFt7kpSaG8H9vdUEfRfPgAUJdycnQSRtkXMV32TczBQwLHNhzxZQ?testcase_id=5147683918708736 Issue manually filed by: mmoroz See https://chromium.googlesource.com/chromium/src/+/master/testing/libfuzzer/reproducing.md for more information.
,
Sep 19 2016
,
Sep 21 2016
,
Sep 21 2016
This is a smaller test case:
+// Flags: --expose-wasm
+
+load("test/mjsunit/wasm/wasm-constants.js");
+load("test/mjsunit/wasm/wasm-module-builder.js");
+
+(function() {
+var builder = new WasmModuleBuilder();
+var original_size = 16;
+builder.addMemory(original_size, 1000, false);
+builder.addFunction("foo", kSig_i_v)
+ .addBody([
+ kExprMemorySize,
+ kExprI32Const, 34,
+ kExprGrowMemory,
+ kExprI32DivU
+ ])
+ .exportFunc();
+var module = builder.instantiate();
+assertEquals(original_size, module.exports.foo());
+})();
We have to wait with a fix until the 0xc patch lands (https://codereview.chromium.org/2345593003)
,
Sep 23 2016
ClusterFuzz has detected this issue as fixed in range 420327:420425. Detailed report: https://cluster-fuzz.appspot.com/testcase?key=5147683918708736 Fuzzer: afl_v8_wasm_code_fuzzer Job Type: afl_chrome_asan Platform Id: linux Crash Type: CHECK failure Crash Address: Crash State: (result_interpreted)==(result_compiled) in wasm-code.cc Regressed: https://cluster-fuzz.appspot.com/revisions?job=afl_chrome_asan&range=418554:418622 Fixed: https://cluster-fuzz.appspot.com/revisions?job=afl_chrome_asan&range=420327:420425 Minimized Testcase (0.02 Kb): https://cluster-fuzz.appspot.com/download/AMIfv97XQZSmhKKuOoG70miXSSOEnRUhT-J7ZKSMCJmEUIycmWY5Mob3Jk9Nn1SIsOHtVwG6iyQFGwe4e_jbwokXYBwM2hPlDTebH23tz7z1DSBFt7kpSaG8H9vdUEfRfPgAUJdycnQSRtkXMV32TczBQwLHNhzxZQ?testcase_id=5147683918708736 See https://chromium.googlesource.com/chromium/src/+/master/testing/libfuzzer/reproducing.md for more information. If you suspect that the result above is incorrect, try re-doing that job on the test case report page.
,
Sep 24 2016
ClusterFuzz testcase is verified as fixed, closing issue. If this is incorrect, please add ClusterFuzz-Wrong label and re-open the issue.
,
Nov 22 2016
Removing EditIssue view restrictions from ClusterFuzz filed bugs. If you believe that this issue should still be restricted, please reapply the label. For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot |
||||||
►
Sign in to add a comment |
||||||
Comment 1 by mmoroz@chromium.org
, Sep 18 2016Components: Blink>JavaScript>WebAssembly
Owner: ahaas@chromium.org