Skip to content

Commit

Permalink
fix bug61546.phpt test
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Jul 26, 2022
1 parent 31c3cff commit 6a79867
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sapi/cli/tests/bug61546.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ $php = getenv("TEST_PHP_EXECUTABLE");
$test_code = <<<PHP
<?php
chdir('..');
var_dump(get_current_user() != "");
var_dump(getmyinode() !== false);
var_dump(getlastmod() != false);
chdir('..');
var_dump(getmyinode() !== false);
var_dump(getlastmod() != false);
Expand All @@ -29,3 +30,4 @@ unlink("bug61546_sub.php");
bool(true)
bool(true)
bool(true)
bool(true)

0 comments on commit 6a79867

Please sign in to comment.