mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-08 20:21:25 +00:00
Consolidated hana test benches into fewer files
for pf in test_simulation_{always,and,buffer,decoder,inc,mux,nand,nor,or,seq,shifter,sop,techmap,xnor,xor}; do gawk 'FNR == 1 { printf("\n// %s\n",FILENAME); } { gsub("^module *", sprintf("module f%d_",ARGIND)); print; }' \ ${pf}_*_test.v > $pf.v; ../tools/autotest.sh $pf.v; mv -v ${pf}_*_test.v Attic/; done; ..etc..
This commit is contained in:
parent
03ef9a75c6
commit
5e641acc90
175 changed files with 1622 additions and 1332 deletions
42
tests/hana/test_simulation_inc.v
Normal file
42
tests/hana/test_simulation_inc.v
Normal file
|
@ -0,0 +1,42 @@
|
|||
|
||||
// test_simulation_inc_16_test.v
|
||||
module f1_test(input [15:0] in, output [15:0] out);
|
||||
|
||||
assign out = -in;
|
||||
|
||||
endmodule
|
||||
|
||||
// test_simulation_inc_1_test.v
|
||||
module f2_test(input in, output out);
|
||||
|
||||
assign out = -in;
|
||||
|
||||
endmodule
|
||||
|
||||
// test_simulation_inc_2_test.v
|
||||
module f3_test(input [1:0] in, output [1:0] out);
|
||||
|
||||
assign out = -in;
|
||||
|
||||
endmodule
|
||||
|
||||
// test_simulation_inc_32_test.v
|
||||
module f4_test(input [31:0] in, output [31:0] out);
|
||||
|
||||
assign out = -in;
|
||||
|
||||
endmodule
|
||||
|
||||
// test_simulation_inc_4_test.v
|
||||
module f5_test(input [3:0] in, output [3:0] out);
|
||||
|
||||
assign out = -in;
|
||||
|
||||
endmodule
|
||||
|
||||
// test_simulation_inc_8_test.v
|
||||
module f6_test(input [7:0] in, output [7:0] out);
|
||||
|
||||
assign out = -in;
|
||||
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue