1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xcache/tests/xcache_include_relative_cwd...

18 lines
246 B
PHP

--TEST--
include relative to current working dir
--SKIPIF--
<?php
require("include-skipif.inc");
?>
--FILE--
<?php
chdir(__DIR__);
include "./sub-a.inc";
include "./sub-b.inc";
?>
--EXPECTF--
%stests
%stests%ssub-a.inc
%stests
%stests%ssub-b.inc