X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e70833fb1dfa271e7b0c9dec11ad644880e03c6f..51a9eb7327c8c856e5bbcfa1d39a13df28da4635:/tests/regex/regex.cpp diff --git a/tests/regex/regex.cpp b/tests/regex/regex.cpp index 733e5aed69..3905dcdcc5 100644 --- a/tests/regex/regex.cpp +++ b/tests/regex/regex.cpp @@ -226,14 +226,20 @@ void RegExTestCase::doTest(int flavor) // 'e' - test that the pattern fails to compile if (m_mode == 'e') - return failIf(re.IsValid(), _T("compile suceeded (should fail)")); + { + failIf(re.IsValid(), _T("compile suceeded (should fail)")); + return; + } failIf(!re.IsValid(), _T("compile failed")); bool matches = re.Matches(m_data, m_matchFlags); // 'f' or 'p' - test that the pattern does not match if (m_mode == 'f' || m_mode == 'p') - return failIf(matches, _T("match suceeded (should fail)")); + { + failIf(matches, _T("match suceeded (should fail)")); + return; + } // otherwise 'm' or 'i' - test the pattern does match failIf(!matches, _T("match failed"));