mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-8.3'
* PHP-8.3: [skip ci] Fix more test tmp file conflicts
This commit is contained in:
commit
02494e7657
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ require __DIR__.'/file.inc';
|
|||
echo "*** Testing is_readable(): basic functionality ***\n";
|
||||
|
||||
// create a file
|
||||
$filename = __DIR__."/is_readable.tmp";
|
||||
$filename = __DIR__."/is_readable_basic.tmp";
|
||||
create_file($filename);
|
||||
|
||||
$counter = 1;
|
||||
|
|
|
@ -3,7 +3,7 @@ Test is_readable() function: error conditions
|
|||
--FILE--
|
||||
<?php
|
||||
echo "\n*** Testing is_readable() on non-existent file ***\n";
|
||||
var_dump( is_readable(__DIR__."/is_readable.tmp") );
|
||||
var_dump( is_readable(__DIR__."/is_readable_error.tmp") );
|
||||
|
||||
echo "Done\n";
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue