mirror of
https://github.com/php/php-src.git
synced 2025-01-10 04:54:47 +08:00
75bc3446f8
All these tests are meant to run with OPcache available, and some will even fail inevitably without it, so we add OPcache as SKIPIF requirement.
11 lines
217 B
PHP
11 lines
217 B
PHP
--TEST--
|
|
Bug #73668: "SIGFPE Arithmetic exception" in opcache when divide by minus 1
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
$a/-1;
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined variable: a in %s on line %d
|