use default test timeout

This commit is contained in:
Anatol Belski 2015-03-16 23:07:33 +01:00
parent fd51bd4a9e
commit b9bc84e29e
11 changed files with 0 additions and 11 deletions

View file

@ -9,7 +9,6 @@ Timeout within while loop
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
while (1) {

View file

@ -9,7 +9,6 @@ Timeout within function
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
function hello ($t) {

View file

@ -9,7 +9,6 @@ Timeout within shutdown function, variation
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
function f()

View file

@ -9,7 +9,6 @@ Timeout within array_walk
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
function cb(&$i, $k, $p)

View file

@ -9,7 +9,6 @@ Timeout within eval
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
function hello ($t) {

View file

@ -9,7 +9,6 @@ Timeout within call_user_func
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
function hello ($t) {

View file

@ -9,7 +9,6 @@ Timeout within function containing exteption
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
function f($t) {

View file

@ -9,7 +9,6 @@ Timeout within function trowing exteption before timeout reached
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
function f($t) {

View file

@ -9,7 +9,6 @@ Timeout within for loop
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
for ($i = 0; $i < 42; $i++) {

View file

@ -7,7 +7,6 @@ Timeout within foreach loop
--FILE--
<?php
$t = 3;
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
set_time_limit($t);

View file

@ -9,7 +9,6 @@ Timeout within shutdown function
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
$t = 3;
set_time_limit($t);
function f()