Skip to content

Commit

Permalink
Run selective tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
mkpro118 committed Jun 30, 2024
1 parent cd521d1 commit c2be43d
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions tests/test_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,16 @@ Test tests[] = {
};


int main(int argc, char* argv[]) {
return default_main(&argv[1], argc - 1);
int main() {
// Run selective tests
char* argv[] = {
"--run",
"test_parser_create",
"test_parser_init",
"test_peek",
"test_next",
"test_expect"
};
int argc = sizeof(argv) / sizeof(char*);
return default_main(argv, argc);
}

0 comments on commit c2be43d

Please sign in to comment.