From 5a05344d9cd003e5136415fd65a13fd18f28b189 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Povi=C5=A1er?= Date: Fri, 16 Feb 2024 11:41:09 +0100 Subject: [PATCH] tests: Fix initialization race in xprop tests --- tests/xprop/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xprop/test.py b/tests/xprop/test.py index a275b0d93..b73b4dae7 100644 --- a/tests/xprop/test.py +++ b/tests/xprop/test.py @@ -271,7 +271,7 @@ if "prepare" in steps: for pattern in patterns: print( - f' gclk = 1; #0; A[0] = 1\'b{pattern[-1]}; #0; A = {input_width}\'b{pattern}; #5; gclk = 0; $display("%b %b", A, Y); #5', + f' #0; gclk = 1; #0; A[0] = 1\'b{pattern[-1]}; #0; A = {input_width}\'b{pattern}; #5; gclk = 0; $display("%b %b", A, Y); #5', file=tb_file, )