ext-uv/tests/999-uv_chdir.phpt

18 lines
321 B
Plaintext
Raw Normal View History

2012-06-25 06:05:26 +02:00
--TEST--
Check for uv_chdir
--FILE--
<?php
uv_chdir(); // don't SEGV
2012-06-25 06:05:26 +02:00
uv_chdir(dirname(__FILE__));
if (uv_cwd() == dirname(__FILE__)) {
echo "OK";
} else {
echo "FAILED: expected " . dirname(__FILE__) . ", but " . uv_cwd();
}
--EXPECTF--
Warning: uv_chdir() expects exactly 1 parameter, 0 given in %s on line %d
OK