ppTests mv macro_multiline_comment

This commit is contained in:
damc 2022-07-21 13:02:42 +02:00
parent e4b2fdbc49
commit 81e3d1ea11
3 changed files with 7 additions and 5 deletions

View File

@ -1173,9 +1173,9 @@ mod tests {
}
#[test]
fn macro_multiline() {
fn macro_multiline_comment() {
let (ret, _) = preprocess(
testfile_path("test17.sv"),
testfile_path("macro_multiline_comment.sv"),
&HashMap::new(),
&[] as &[String],
false,
@ -1184,7 +1184,7 @@ mod tests {
.unwrap();
assert_eq!(
ret.text(),
testfile_contents("expected/macro_multiline")
testfile_contents("expected/macro_multiline_comment.sv")
);
}

View File

@ -4,5 +4,7 @@
module test();
initial begin
end endmodule
initial begin
end
endmodule