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

Side by Side Diff: test/fuzzer/wasm-code.cc

Issue 2390233002: [wasm] Adjust crash message of the correctness fuzzer to avoid clustering. (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 #include <stddef.h> 5 #include <stddef.h>
6 #include <stdint.h> 6 #include <stdint.h>
7 7
8 #include "include/v8.h" 8 #include "include/v8.h"
9 #include "src/isolate.h" 9 #include "src/isolate.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 v8::internal::handle(v8::internal::Smi::FromInt(3), i_isolate)}; 88 v8::internal::handle(v8::internal::Smi::FromInt(3), i_isolate)};
89 result_compiled = testing::CallWasmFunctionForTesting( 89 result_compiled = testing::CallWasmFunctionForTesting(
90 i_isolate, instance, &compiler_thrower, "main", arraysize(arguments), 90 i_isolate, instance, &compiler_thrower, "main", arraysize(arguments),
91 arguments, v8::internal::wasm::ModuleOrigin::kWasmOrigin); 91 arguments, v8::internal::wasm::ModuleOrigin::kWasmOrigin);
92 } 92 }
93 if (result_interpreted == 0xdeadbeef) { 93 if (result_interpreted == 0xdeadbeef) {
94 CHECK(i_isolate->has_pending_exception()); 94 CHECK(i_isolate->has_pending_exception());
95 i_isolate->clear_pending_exception(); 95 i_isolate->clear_pending_exception();
96 } else { 96 } else {
97 if (result_interpreted != result_compiled) { 97 if (result_interpreted != result_compiled) {
98 V8_Fatal( 98 V8_Fatal(__FILE__, __LINE__, "WasmCodeFuzzerHash=%x",
99 __FILE__, __LINE__, 99 v8::internal::StringHasher::HashSequentialString(
100 "Interpreter result (%d) != compiled module result (%d). Hash: %u", 100 data, static_cast<int>(size), WASM_CODE_FUZZER_HASH_SEED));
101 result_interpreted, result_compiled,
102 v8::internal::StringHasher::HashSequentialString(
103 data, static_cast<int>(size), WASM_CODE_FUZZER_HASH_SEED));
104 } 101 }
105 CHECK_EQ(result_interpreted, result_compiled);
106 } 102 }
107 return 0; 103 return 0;
108 } 104 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698