forked from laurikari/tre
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standalone test for upstream laurikari#101.
- Loading branch information
1 parent
bd8ca49
commit 6fd31ec
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#ifdef HAVE_CONFIG_H | ||
#include <config.h> | ||
#endif | ||
|
||
#include <regex.h> | ||
|
||
int main(void) | ||
{ | ||
regex_t reg; | ||
|
||
if (regcomp(®, "^|$", REG_EXTENDED | REG_NOSUB) != 0) | ||
return 2; | ||
/* should not match becuase BOL and EOL are disabled */ | ||
if (regexec(®, "", 0, NULL, REG_NOTBOL | REG_NOTEOL) != REG_NOMATCH) | ||
return 1; | ||
/* should match because BOL is disabled but EOL is not */ | ||
if (regexec(®, "", 0, NULL, REG_NOTBOL) != 0) | ||
return 1; | ||
/* should match because EOL is disabled but BOL is not */ | ||
if (regexec(®, "", 0, NULL, REG_NOTEOL) != 0) | ||
return 1; | ||
regfree(®); | ||
return 0; | ||
} | ||
|