From 2acff6a62ce7237799f08c544ca14a7795500ba3 Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Wed, 24 Jun 2026 23:52:31 -0700 Subject: [PATCH] tests: fix sv_implicit_ports for port-resize log severity change "Reduce port resize to warning" changed the resize message from log_warning() to log(), which -q suppresses. Run the resize case without -q and drop the stale "Warning: " prefix so the message is observed. Co-authored-by: Cursor --- tests/various/sv_implicit_ports.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/various/sv_implicit_ports.sh b/tests/various/sv_implicit_ports.sh index ace95b3ba..1be68917d 100755 --- a/tests/various/sv_implicit_ports.sh +++ b/tests/various/sv_implicit_ports.sh @@ -112,7 +112,9 @@ endmodule EOT # Mixed implicit and explicit 2 -(${YOSYS} -f "verilog -sv" -qp "prep -flatten -top top; select -assert-count 1 t:\$add" - <&1 | grep -F "Warning: Resizing cell port top.add_i.b from 10 bits to 8 bits." > /dev/null +) 2>&1 | grep -F "Resizing cell port top.add_i.b from 10 bits to 8 bits." > /dev/null