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

View File

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