Skip to content

Commit

Permalink
iSeparate tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dstogov committed Dec 28, 2021
1 parent fd879e6 commit 206bcff
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 0 additions & 1 deletion ext/opcache/tests/jit/fetch_dim_r_010.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ set_error_handler(function() {
});
$a = [$y];
($a[$b]);
($a[17604692317316877817]);
?>
DONE
--EXPECT--
Expand Down
18 changes: 18 additions & 0 deletions ext/opcache/tests/jit/fetch_dim_r_011.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
--TEST--
JIT FETCH_DIM_R: 011
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
set_error_handler(function() {
$GLOBALS['a'] = 0;
});
$a = [$y];
($a[17604692317316877817]);
?>
DONE
--EXPECT--
DONE

0 comments on commit 206bcff

Please sign in to comment.