summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAnatoliy Belsky <ab@php.net>2012-04-16 14:39:39 +0200
committerAnatoliy Belsky <ab@php.net>2012-04-16 14:39:39 +0200
commit45977c6aae0814d51e8902d77e4ebe79a1ab78cf (patch)
tree5f0922d7def9271ac714ace2530d36e1f619b591 /tests
parentd588d01b7c6583fc7da2dfbbc67d2beef1070ef4 (diff)
parentaaed0af418e153de27d698b1a529914d86637d20 (diff)
downloadphp-git-45977c6aae0814d51e8902d77e4ebe79a1ab78cf.tar.gz
Merge branch 'PHP-5.3' into PHP-5.4
* PHP-5.3: Fix bug 61683 tests\basic\bug20539.phpt fails
Diffstat (limited to 'tests')
-rw-r--r--tests/basic/bug20539.phpt3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/basic/bug20539.phpt b/tests/basic/bug20539.phpt
index 67cef3a4f6..1406ce088e 100644
--- a/tests/basic/bug20539.phpt
+++ b/tests/basic/bug20539.phpt
@@ -11,7 +11,8 @@ session.save_path=./tests/basic/
<?php
print "good :)\n";
$filename = __DIR__ . '/sess_' . session_id();
- var_dump(unlink($filename));
+ var_dump(file_exists($filename));
+ @unlink($filename);
?>
--EXPECT--
good :)