test coverage

This commit is contained in:
Yaossg 2024-12-08 11:40:47 +08:00
parent 54db58d362
commit 3b95608233
23 changed files with 199 additions and 50 deletions

2
boot.c
View file

@ -246,7 +246,7 @@ int get_escaped_char() {
} else if (ch == '\"') {
ch = '\"';
} else {
fprintf(stderr, "unexpected escaped character: %c\n", ch);
fprintf(stderr, "unexpected escaped character: '\\%c'\n", ch);
exit(1);
}
return ch;