Skip to content

Commit 625a87b

Browse files
committed
riscv64: enable test summary printing
1 parent 1cccfe4 commit 625a87b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/compiler/test_runner.zig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,12 @@ pub fn mainSimple() anyerror!void {
289289
@disableInstrumentation();
290290
// is the backend capable of printing to stderr?
291291
const enable_print = switch (builtin.zig_backend) {
292+
.stage2_riscv64 => true,
292293
else => false,
293294
};
294295
// is the backend capable of using std.fmt.format to print a summary at the end?
295296
const print_summary = switch (builtin.zig_backend) {
297+
.stage2_riscv64 => true,
296298
else => false,
297299
};
298300

0 commit comments

Comments
 (0)