1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 14:12:38 +02:00

Fix directory clash in tempnam_variation4 test

This commit is contained in:
Nikita Popov
2020-04-15 11:25:06 +02:00
parent 58e6a0a602
commit 0a2fd0db3c
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ require __DIR__ . '/../skipif_root.inc';
echo "*** Testing tempnam() with dir of permissions from 0000 to 0350 ***\n";
$file_path = __DIR__;
$dir_name = $file_path."/tempnam_variation4";
$dir_name = $file_path."/tempnam_variation4-0";
$prefix = "tempnamVar4.";
mkdir($dir_name);

View File

@@ -20,7 +20,7 @@ require __DIR__ . '/../skipif_root.inc';
echo "*** Testing tempnam() with dir of permissions from 0351 to 0777 ***\n";
$file_path = __DIR__;
$dir_name = $file_path."/tempnam_variation4";
$dir_name = $file_path."/tempnam_variation4-1";
$prefix = "tempnamVar4.";
mkdir($dir_name);