Searched refs:TestRegex (Results 1 – 1 of 1) sorted by relevance
| /kernel/liteos_m/testsuites/unittest/posix/src/regex/ |
| D | regex_func_test.c | 76 int TestRegex(int flag, const char *pattern, const char *buf, const int expectedStatus, const char … in TestRegex() function 120 …TestRegex(REG_EXTENDED, "^\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*.\\w+([-.]\\w+)*$", "harmony20000925@abc… 123 …TestRegex(REG_EXTENDED, "^addr=([^&]*)", "fawei123&sex=girl&age=18\r\naddr=bantian&hobby=movie", R… 135 TestRegex(REG_ICASE, "HARMONY[1-9]", "harmony20000925@abcdef.com", REG_OK, "harmony2"); 137 TestRegex(REG_ICASE, "HARMONY([1-9])", "harmony20000925@abcdef.com", REG_NOMATCH, NULL); 148 …TestRegex(REG_EXTENDED | REG_NEWLINE, "^addr=([^&]*)", "fawei123&sex=girl&age=18\r\naddr=bantian&h… 151 …TestRegex(REG_EXTENDED | REG_NEWLINE, "^addr=([^&]*)", "fawei123&sex=girl&age=18&addr=bantian&hobb…
|