Codebase list ohcount / 85ef4224-9298-4dc6-8a5a-b1f66d4179b3/main test / unit / parsers / test_assembler.h
85ef4224-9298-4dc6-8a5a-b1f66d4179b3/main

Tree @85ef4224-9298-4dc6-8a5a-b1f66d4179b3/main (Download .tar.gz)

test_assembler.h @85ef4224-9298-4dc6-8a5a-b1f66d4179b3/mainraw · history · blame

void test_assembler_comments() {
  test_parser_verify_parse(
    test_parser_sourcefile("assembler", " !comment\n ;comment"),
    "assembler", "", "!comment\n;comment", 0
  );
}

void test_assembler_comment_entities() {
  test_parser_verify_entity(
    test_parser_sourcefile("assembler", " //comment"),
    "comment", "//comment"
  );
  test_parser_verify_entity(
    test_parser_sourcefile("assembler", " ; comment"),
    "comment", "; comment"
  );
  test_parser_verify_entity(
    test_parser_sourcefile("assembler", " !comment"),
    "comment", "!comment"
  );
}

void all_assembler_tests() {
  test_assembler_comments();
  test_assembler_comment_entities();
}