Skip to content

Commit 61f98e2

Browse files
committed
extensions_error.phpt runs fine on Windows
1 parent 4166dd3 commit 61f98e2

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/extensions_error.phpt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ phpinfo(INFO_MODULES);
99
$minfo = ob_get_contents();
1010
ob_end_clean();
1111

12-
if(strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') {
13-
// On Windows the "Fatal error" happens to appear before the error
14-
// message output by V8 itself.
15-
echo "skip Windows";
16-
}
17-
1812
if(preg_match("/V8 Engine Linked Version => (.*)/", $minfo, $matches)) {
1913
$version = explode('.', $matches[1]);
2014
if($version[0] < 5 || ($version[0] == 5 && $version[1] < 7)) {

0 commit comments

Comments
 (0)