2 void test_vhdl_comments() {
3 test_parser_verify_parse(
4 test_parser_sourcefile("vhdl", " -- comment"),
5 "vhdl", "", "-- comment", 0
9 void test_vhdl_comment_entities() {
10 test_parser_verify_entity(
11 test_parser_sourcefile("vhdl", " --comment"),
12 "comment", "--comment"
16 void all_vhdl_tests() {
18 test_vhdl_comment_entities();