Skip to content

Commit

Permalink
test: disable vlog14 on windows due to need for escape.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ondrej Ille committed Dec 21, 2024
1 parent 29e1380 commit fe6eadf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/regress/gold/vlog14.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FIRST MACRO WAS DEFINED OK !
VALUE_OF_SECOND_MACRO
MACRO_A WAS DEFINED OK !
DEADBEEF
2 changes: 1 addition & 1 deletion test/regress/testlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1084,4 +1084,4 @@ issue1094 normal,2008
issue1060 fail,gold,vhpi
ivtest5 verilog
guard5 normal
vlog14 verilog,define=FIRST_MACRO,define=SECOND_MACRO="VALUE_OF_SECOND_MACRO",gold
vlog14 verilog,define=MACRO_A,define=MACRO_B="DEADBEEF",gold,!windows
6 changes: 3 additions & 3 deletions test/regress/vlog14.v
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ module vlog14;
initial begin
#1;

`ifdef FIRST_MACRO
$display("FIRST MACRO WAS DEFINED OK !");
`ifdef MACRO_A
$display("MACRO_A WAS DEFINED OK !");
`endif

$display(`SECOND_MACRO);
$display(`MACRO_B);

end
endmodule // vlog14

0 comments on commit fe6eadf

Please sign in to comment.