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.
|
to make sure the code is always going forward.
|
||||||
|
|
||||||
NOTE: There are scripts written in perl to run the regression tests, but they
|
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.
|
method that is described here.
|
||||||
|
|
||||||
Test Descriptions
|
Test Descriptions
|
||||||
|
|
|
||||||
|
|
@ -70,10 +70,10 @@ example, the counter model in counter.v
|
||||||
parameter WIDTH = 8;
|
parameter WIDTH = 8;
|
||||||
|
|
||||||
output [WIDTH-1 : 0] out;
|
output [WIDTH-1 : 0] out;
|
||||||
input clk, reset;
|
input clk, reset;
|
||||||
|
|
||||||
reg [WIDTH-1 : 0] out;
|
reg [WIDTH-1 : 0] out;
|
||||||
wire clk, reset;
|
wire clk, reset;
|
||||||
|
|
||||||
always @(posedge clk or posedge reset)
|
always @(posedge clk or posedge reset)
|
||||||
if (reset)
|
if (reset)
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
module testbench;
|
module testbench;
|
||||||
string str;
|
string str;
|
||||||
int val;
|
int val;
|
||||||
real valr;
|
real valr;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
module main;
|
module main;
|
||||||
|
|
||||||
string foo;
|
string foo;
|
||||||
int error_count;
|
int error_count;
|
||||||
|
|
||||||
task check_char(input int idx, input [7:0] val);
|
task check_char(input int idx, input [7:0] val);
|
||||||
if (foo[idx] !== val) begin
|
if (foo[idx] !== val) begin
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
module main;
|
module main;
|
||||||
|
|
||||||
string foo;
|
string foo;
|
||||||
int error_count;
|
int error_count;
|
||||||
|
|
||||||
task check_char(input int idx, input [7:0] val);
|
task check_char(input int idx, input [7:0] val);
|
||||||
if (foo[idx] !== val) begin
|
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_member_sel3 normal,-g2009 ivltests
|
||||||
sv_ps_method1 normal,-g2009 ivltests
|
sv_ps_method1 normal,-g2009 ivltests
|
||||||
sv_ps_method2 normal,-g2009 ivltests
|
sv_ps_method2 normal,-g2009 ivltests
|
||||||
sv_ps_method3 normal,-g2009 ivltests
|
sv_ps_method3 normal,-g2009 ivltests
|
||||||
sv_ps_method4 normal,-g2009 ivltests
|
sv_ps_method4 normal,-g2009 ivltests
|
||||||
sv_ps_type1 normal,-g2009 ivltests
|
sv_ps_type1 normal,-g2009 ivltests
|
||||||
sv_ps_type_cast1 normal,-g2009 ivltests
|
sv_ps_type_cast1 normal,-g2009 ivltests
|
||||||
sv_ps_type_cast2 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_func1 normal ivltests gold=recursive_func.gold
|
||||||
recursive_func_const1 normal ivltests gold=recursive_func_const.gold
|
recursive_func_const1 normal ivltests gold=recursive_func_const.gold
|
||||||
recursive_task normal ivltests gold=recursive_task.gold
|
recursive_task normal ivltests gold=recursive_task.gold
|
||||||
redef_net_error CE ivltests
|
redef_net_error CE ivltests
|
||||||
redef_reg_error CE ivltests
|
redef_reg_error CE ivltests
|
||||||
repeat2 normal ivltests
|
repeat2 normal ivltests
|
||||||
repeat_expr_probe normal ivltests
|
repeat_expr_probe normal ivltests
|
||||||
repl_zero_wid_fail CE ivltests
|
repl_zero_wid_fail CE ivltests
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue