You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @expectedExceptionMessageRegExp /Failed to parse dotenv file due to a quote parsing error.+/
57
+
* @expectedExceptionMessage Failed to parse dotenv file due to a quote parsing error (PREG_BACKTRACK_LIMIT_ERROR). Failed at ["iiiiviiiixiiiiviiii\n"].
53
58
*/
54
59
publicfunctiontestParserFailsWithException()
55
60
{
56
-
$default = 1000000;
57
61
$limit = (int) ini_get('pcre.backtrack_limit');
58
-
if($limit != $default) {
59
-
$this->markTestIncomplete();
62
+
63
+
if ($limit > 1000000) {
64
+
$this->markTestSkipped('System pcre.backtrack_limit too large.');
0 commit comments