Tests: Fix race condition in t_flag_csplit
This commit is contained in:
parent
d236e4c054
commit
e00a919269
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue