summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2006-05-16 23:05:49 +0000
committerMarcus Boerger <helly@php.net>2006-05-16 23:05:49 +0000
commit216049bb27bf9e048035be20c6248e8d81e26b64 (patch)
tree5644eefdf4d42e6f7255168987f2ab8dfaeda6a8 /run-tests.php
parent1f02fad528a44387e879b889bafd2d80b2019252 (diff)
downloadphp-git-216049bb27bf9e048035be20c6248e8d81e26b64.tar.gz
- MFH '_' is valid in test blocks
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php2
1 files changed, 1 insertions, 1 deletions
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';