Skip to content

Commit 3336a80

Browse files
committed
fixup: print VERIFY FAILED for immediate-mode verification failures too
1 parent 4b22640 commit 3336a80

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/benchmark_runner.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ std::vector<BenchmarkResult> BenchmarkRunner::runAll() {
159159
if (!config_.quiet) {
160160
if (!result.supported) {
161161
printf(" SKIPPED (%s)\n", result.skip_reason.c_str());
162+
} else if (!result.verified) {
163+
printf(" VERIFY FAILED\n");
162164
} else {
163165
printf(" %.2f ms (%.1f MP/s)\n",
164166
result.wall_clock.median_ns / 1e6,

0 commit comments

Comments
 (0)