Spelling and space cleanup
This commit is contained in:
parent
5439fcd5c2
commit
ef931e2e0d
|
|
@ -8,7 +8,7 @@ suite, and this suite is used by the github actions as continuous integration
|
|||
to make sure the code is always going forward.
|
||||
|
||||
NOTE: There are scripts written in perl to run the regression tests, but they
|
||||
are bing gradually replaced with a newer set of scripts. It is the newer
|
||||
are being gradually replaced with a newer set of scripts. It is the newer
|
||||
method that is described here.
|
||||
|
||||
Test Descriptions
|
||||
|
|
|
|||
|
|
@ -70,10 +70,10 @@ example, the counter model in counter.v
|
|||
parameter WIDTH = 8;
|
||||
|
||||
output [WIDTH-1 : 0] out;
|
||||
input clk, reset;
|
||||
input clk, reset;
|
||||
|
||||
reg [WIDTH-1 : 0] out;
|
||||
wire clk, reset;
|
||||
wire clk, reset;
|
||||
|
||||
always @(posedge clk or posedge reset)
|
||||
if (reset)
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
module testbench;
|
||||
string str;
|
||||
int val;
|
||||
int val;
|
||||
real valr;
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
module main;
|
||||
|
||||
string foo;
|
||||
int error_count;
|
||||
int error_count;
|
||||
|
||||
task check_char(input int idx, input [7:0] val);
|
||||
if (foo[idx] !== val) begin
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
module main;
|
||||
|
||||
string foo;
|
||||
int error_count;
|
||||
int error_count;
|
||||
|
||||
task check_char(input int idx, input [7:0] val);
|
||||
if (foo[idx] !== val) begin
|
||||
|
|
|
|||
|
|
@ -755,8 +755,8 @@ sv_ps_member_sel2 normal,-g2009 ivltests
|
|||
sv_ps_member_sel3 normal,-g2009 ivltests
|
||||
sv_ps_method1 normal,-g2009 ivltests
|
||||
sv_ps_method2 normal,-g2009 ivltests
|
||||
sv_ps_method3 normal,-g2009 ivltests
|
||||
sv_ps_method4 normal,-g2009 ivltests
|
||||
sv_ps_method3 normal,-g2009 ivltests
|
||||
sv_ps_method4 normal,-g2009 ivltests
|
||||
sv_ps_type1 normal,-g2009 ivltests
|
||||
sv_ps_type_cast1 normal,-g2009 ivltests
|
||||
sv_ps_type_cast2 normal,-g2009 ivltests
|
||||
|
|
|
|||
|
|
@ -1516,8 +1516,8 @@ real_reg_force_rel normal ivltests
|
|||
recursive_func1 normal ivltests gold=recursive_func.gold
|
||||
recursive_func_const1 normal ivltests gold=recursive_func_const.gold
|
||||
recursive_task normal ivltests gold=recursive_task.gold
|
||||
redef_net_error CE ivltests
|
||||
redef_reg_error CE ivltests
|
||||
redef_net_error CE ivltests
|
||||
redef_reg_error CE ivltests
|
||||
repeat2 normal ivltests
|
||||
repeat_expr_probe normal ivltests
|
||||
repl_zero_wid_fail CE ivltests
|
||||
|
|
|
|||
Loading…
Reference in New Issue