From: Marcus Boerger Date: Tue, 16 May 2006 23:05:49 +0000 (+0000) Subject: - MFH '_' is valid in test blocks X-Git-Tag: php-5.2.0RC1~536 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=216049bb27bf9e048035be20c6248e8d81e26b64;p=php - MFH '_' is valid in test blocks --- diff --git a/run-tests.php b/run-tests.php index ae42e582ac..3b2d2796cc 100755 --- a/run-tests.php +++ b/run-tests.php @@ -972,7 +972,7 @@ TEST $file $line = fgets($fp); // Match the beginning of a section. - if (preg_match('/^--([A-Z]+)--/', $line, $r)) { + if (preg_match('/^--([_A-Z]+)--/', $line, $r)) { $section = $r[1]; $section_text[$section] = ''; $secfile = $section == 'FILE' || $section == 'FILEEOF';