Skip to content

Fix potential conflict of copy_variation5-win32.phpt #16854

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions ext/standard/tests/file/copy_variation5-win32.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ fclose($file_handle);
$dest_files = array(

/* Checking case sensitiveness */
"COPY.tmp",
"COPY.TMP",
"CopY.TMP"
"COPY5.tmp",
"COPY5.TMP",
"CopY5.TMP"
);

echo "Size of the source file before copy operation => ";
Expand Down Expand Up @@ -80,25 +80,25 @@ Size of the source file before copy operation => int(1500)
-- Iteration 1 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/COPY.tmp
Destination file name => %s/COPY5.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 2 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/COPY.TMP
Destination file name => %s/COPY5.TMP
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 3 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/CopY.TMP
Destination file name => %s/CopY5.TMP
Size of source file => int(1500)
Size of destination file => int(1500)

Warning: unlink(%s/COPY.TMP): No such file or directory in %s on line %d
Warning: unlink(%s/COPY5.TMP): No such file or directory in %s on line %d

Warning: unlink(%s/CopY.TMP): No such file or directory in %s on line %d
Warning: unlink(%s/CopY5.TMP): No such file or directory in %s on line %d
*** Done ***
Loading