Skip to content

Commit

Permalink
Move test of $ into hand-picked suite
Browse files Browse the repository at this point in the history
  • Loading branch information
kokke committed Oct 25, 2024
1 parent 6eccaf1 commit f2632c6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test1.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ char* test_vector[][4] =
{ NOK, "[^\\D]", "d", (char*) 0 },
{ OK, "[\\D]", "d", (char*) 1 },
{ OK, "^.*\\\\.*$", "c:\\Tools", (char*) 8 },
{ OK, "^.*\\\\.*$", "c:\\Tools", (char*) 8 },
{ OK, ".?\\w+jsj$", "%JxLLcVx8wxrjsj", (char*) 15 },
{ OK, ".?\\w+jsj$", "=KbvUQjsj", (char*) 9 },
{ OK, ".?\\w+jsj$", "^uDnoZjsj", (char*) 9 },
{ OK, ".?\\w+jsj$", "UzZbjsj", (char*) 7 },
{ OK, ".?\\w+jsj$", "\"wjsj", (char*) 5 },
{ OK, ".?\\w+jsj$", "zLa_FTEjsj", (char*) 10 },
{ OK, ".?\\w+jsj$", "\"mw3p8_Ojsj", (char*) 11 },
{ OK, "^[\\+-]*[\\d]+$", "+27", (char*) 3 },
{ OK, "[abc]", "1c2", (char*) 1 },
{ NOK, "[abc]", "1C2", (char*) 0 },
Expand Down

0 comments on commit f2632c6

Please sign in to comment.