blob: 9d4c5f6ba019e60ca955a368e8dc5831383b3b7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--TEST--
Multiple configuration files
--SKIPIF--
<?php if (!extension_loaded("snuffleupagus")) die "skip"; ?>
--INI--
sp.configuration_file={PWD}/config/config_multi*.ini
--FILE--
<?php
function foo() {
echo "1\n";
}
function bla() {
echo "2\n";
}
foo();
bla();
?>
--EXPECTF--
[snuffleupagus][0.0.0.0][disabled_function][simulation] The call to the function 'foo' in %s/tests/glob_config.php:%d has been disabled.
1
[snuffleupagus][0.0.0.0][disabled_function][simulation] The call to the function 'bla' in %s/tests/glob_config.php:%d has been disabled.
2
|