Tests: Fix race condition in t_flag_csplit

This commit is contained in:
Geza Lore 2025-10-26 09:36:53 +00:00
parent d236e4c054
commit e00a919269
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ module t (/*AUTOARG*/
cyc <= cyc + 1;
if (cyc==0) begin
// Setup
w0 = 32'h1234;
w0 <= 32'h1234;
end
else if (cyc<90) begin
end

View File

@ -125,7 +125,7 @@ test.file_grep_not(test.obj_dir + "/" + test.vm_prefix + "_classes.mk", "vm_clas
test.file_grep_not(test.obj_dir + "/" + test.vm_prefix + "_classes.mk", "vm_classes_2")
# Check combine count
test.file_grep(test.stats, r'Node count, CFILE + (\d+)', (234 if test.vltmt else 214))
test.file_grep(test.stats, r'Node count, CFILE + (\d+)', (230 if test.vltmt else 216))
test.file_grep(test.stats, r'Makefile targets, VM_CLASSES_FAST + (\d+)', 2)
test.file_grep(test.stats, r'Makefile targets, VM_CLASSES_SLOW + (\d+)', 2)