mirror of
https://github.com/php/php-src.git
synced 2024-11-29 12:53:37 +08:00
Do not run test if session extension is not avaliable.
This commit is contained in:
parent
cc5773e775
commit
0e32fbb4dd
@ -1,7 +1,12 @@
|
||||
--TEST--
|
||||
SOAP Server 9: setclass and setpersistence(SOAP_PERSISTENCE_SESSION)
|
||||
--SKIPIF--
|
||||
<?php require_once('skipif.inc'); ?>
|
||||
<?php
|
||||
require_once('skipif.inc');
|
||||
if (!extension_loaded('session')) {
|
||||
die('skip this test needs session extension');
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
class foo {
|
||||
|
Loading…
Reference in New Issue
Block a user