aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/torture/testbench.v
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/torture/testbench.v')
-rw-r--r--scripts/torture/testbench.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/torture/testbench.v b/scripts/torture/testbench.v
index d6b974f..41f3495 100644
--- a/scripts/torture/testbench.v
+++ b/scripts/torture/testbench.v
@@ -79,9 +79,9 @@ module testbench (
end
end
if (errcount)
- $display("FAILED: Got %1d errors for %1s/%1s!", errcount, hex_filename, ref_filename);
+ $display("FAILED: Got %1d errors for %1s => %1s!", errcount, hex_filename, ref_filename);
else
- $display("PASSED %1s/%1s.", hex_filename, ref_filename);
+ $display("PASSED %1s => %1s.", hex_filename, ref_filename);
$finish;
end
end