summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-01-21 18:49:59 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-01-21 18:49:59 +0100
commit59b3ab827abf01ece5a06b9dfdac1f445436d283 (patch)
tree901e0865f69ecd693b4ce907f5deb7dabe219859 /run-tests.php
parent0aa09da486da5f5236f3b5b30429e73b0d377454 (diff)
downloadphp-git-59b3ab827abf01ece5a06b9dfdac1f445436d283.tar.gz
Avoid some @count() suppressions in run-tests.php
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/run-tests.php b/run-tests.php
index a6a9b2ae82..1b0a7e202f 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -1860,7 +1860,7 @@ TEST $file
} else {
- if (!isset($section_text['PHPDBG']) && @count($section_text['FILE']) + @count($section_text['FILEEOF']) + @count($section_text['FILE_EXTERNAL']) != 1) {
+ if (!isset($section_text['PHPDBG']) && isset($section_text['FILE']) + isset($section_text['FILEEOF']) + isset($section_text['FILE_EXTERNAL']) != 1) {
$bork_info = "missing section --FILE--";
}
@@ -1885,7 +1885,7 @@ TEST $file
}
}
- if ((@count($section_text['EXPECT']) + @count($section_text['EXPECTF']) + @count($section_text['EXPECTREGEX'])) != 1) {
+ if ((isset($section_text['EXPECT']) + isset($section_text['EXPECTF']) + isset($section_text['EXPECTREGEX'])) != 1) {
$bork_info = "missing section --EXPECT--, --EXPECTF-- or --EXPECTREGEX--";
}
}
@@ -2209,7 +2209,7 @@ TEST $file
$test_files[] = array($f, $file);
}
}
- $test_cnt += @count($test_files) - 1;
+ $test_cnt += count($test_files) - 1;
$test_idx--;
show_redirect_start($IN_REDIRECT['TESTS'], $tested, $tested_file);
@@ -2243,7 +2243,7 @@ TEST $file
}
}
- if (is_array($org_file) || @count($section_text['REDIRECTTEST']) == 1) {
+ if (is_array($org_file) || isset($section_text['REDIRECTTEST'])) {
if (is_array($org_file)) {
$file = $org_file[0];