adds skips for test
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1383 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
parent
c383d75c51
commit
8cf65a5bcd
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
if (!extension_loaded("xcache")) {
|
||||
die("skip xcache extension not loaded");
|
||||
}
|
||||
?>
|
|
@ -1,5 +1,9 @@
|
|||
--TEST--
|
||||
xcache_is_autoglobal
|
||||
--SKIPIF--
|
||||
<?php
|
||||
require("skipif.inc");
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
var_dump(xcache_is_autoglobal("GLOBALS"));
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
--TEST--
|
||||
xcache_set/get test
|
||||
--SKIPIF--
|
||||
<?php
|
||||
require("skipif.inc");
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
var_dump(xcache_isset("a"));
|
||||
|
|
Loading…
Reference in New Issue