Skip to content

Commit 206bcff

Browse files
committed
iSeparate tests
1 parent fd879e6 commit 206bcff

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

ext/opcache/tests/jit/fetch_dim_r_010.phpt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ set_error_handler(function() {
1212
});
1313
$a = [$y];
1414
($a[$b]);
15-
($a[17604692317316877817]);
1615
?>
1716
DONE
1817
--EXPECT--
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
--TEST--
2+
JIT FETCH_DIM_R: 011
3+
--INI--
4+
opcache.enable=1
5+
opcache.enable_cli=1
6+
opcache.file_update_protection=0
7+
opcache.jit_buffer_size=1M
8+
--FILE--
9+
<?php
10+
set_error_handler(function() {
11+
$GLOBALS['a'] = 0;
12+
});
13+
$a = [$y];
14+
($a[17604692317316877817]);
15+
?>
16+
DONE
17+
--EXPECT--
18+
DONE

0 commit comments

Comments
 (0)