Skip to content

Commit 781e78f

Browse files
committed
Merge branch 'PHP-7.2'
* PHP-7.2: Fixed tests
2 parents b662a7b + b5935c3 commit 781e78f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

ext/opcache/tests/jmp_elim_001.phpt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ Edge-cases in constant conditional jump elimination
88
$webserver = "Apache";
99
$cpuArc = "x86_64";
1010
$archName = (strstr($cpuArc, "64") || PHP_INT_SIZE === 8) ? "64" : "32";
11-
$info = array('os' => PHP_OS,
12-
'phpversion' => phpversion(),
13-
'arch' => $archName,
11+
$info = array('arch' => $archName,
1412
'webserver' =>$webserver);
1513
header('Content-Type: application/json');
1614
echo json_encode($info) . "\n";
1715
--EXPECT--
18-
{"os":"Linux","phpversion":"7.2.0-dev","arch":"64","webserver":"Apache"}
16+
{"arch":"64","webserver":"Apache"}

0 commit comments

Comments
 (0)