authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-03-04 19:13:59+00:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-03-10 10:26:09+00:00
logc91b06ef52f31090b3c8fda9b9a419bf1391d805
treec01888dd9d2db81b8323ee8b695832a35397531e
parent1826ba69d81e182f6bd7cf4ea9b944bd6c713a28
signaturelock-open Commit is signed but in an unrecognized format.

incr-check: fix successful -fno-emit-bin updates


1 files changed, 1 insertions(+), 2 deletions(-)

tools/incr-check.zig+1-2
...@@ -338,7 +338,7 @@ const Eval = struct {...@@ -338,7 +338,7 @@ const Eval = struct {
338338
339 if (eval.target.backend == .sema) {339 if (eval.target.backend == .sema) {
340 try eval.checkSuccessOutcome(update, null, prog_node);340 try eval.checkSuccessOutcome(update, null, prog_node);
341 // This message indicates the end of the update.341 continue;
342 }342 }
343343
344 const digest = r.takeArray(Cache.bin_digest_len) catch unreachable;344 const digest = r.takeArray(Cache.bin_digest_len) catch unreachable;
...@@ -352,7 +352,6 @@ const Eval = struct {...@@ -352,7 +352,6 @@ const Eval = struct {
352 const bin_path = try Dir.path.join(arena, &.{ result_dir, bin_name });352 const bin_path = try Dir.path.join(arena, &.{ result_dir, bin_name });
353353
354 try eval.checkSuccessOutcome(update, bin_path, prog_node);354 try eval.checkSuccessOutcome(update, bin_path, prog_node);
355 // This message indicates the end of the update.
356 },355 },
357 else => {356 else => {
358 // Ignore other messages.357 // Ignore other messages.