Skip to content

Fix test conflict between copy_variation2-win32-mb.phpt and copy_variation2-win32.phpt #18809

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
64 changes: 32 additions & 32 deletions ext/standard/tests/file/copy_variation2-win32-mb.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,24 @@ fclose($file_handle);
$dest_files = array(

/* File names containing special(non-alpha numeric) characters */
"_copy_variation2.tmp",
"@copy_variation2.tmp",
"#copy_variation2.tmp",
"+copy_variation2.tmp",
"?copy_variation2.tmp",
">copy_variation2.tmp",
"!copy_variation2.tmp",
"&copy_variation2.tmp",
"(copy_variation2.tmp",
":copy_variation2.tmp",
";copy_variation2.tmp",
"=copy_variation2.tmp",
"[copy_variation2.tmp",
"^copy_variation2.tmp",
"{copy_variation2.tmp",
"|copy_variation2.tmp",
"~copy_variation2.tmp",
"\$copy_variation2.tmp"
"_copy_variation2_mb.tmp",
"@copy_variation2_mb.tmp",
"#copy_variation2_mb.tmp",
"+copy_variation2_mb.tmp",
"?copy_variation2_mb.tmp",
">copy_variation2_mb.tmp",
"!copy_variation2_mb.tmp",
"&copy_variation2_mb.tmp",
"(copy_variation2_mb.tmp",
":copy_variation2_mb.tmp",
";copy_variation2_mb.tmp",
"=copy_variation2_mb.tmp",
"[copy_variation2_mb.tmp",
"^copy_variation2_mb.tmp",
"{copy_variation2_mb.tmp",
"|copy_variation2_mb.tmp",
"~copy_variation2_mb.tmp",
"\$copy_variation2_mb.tmp"
);

echo "Size of the source file before copy operation => ";
Expand Down Expand Up @@ -90,28 +90,28 @@ 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_variation2.tmp
Destination file name => %s/_copy_variation2_mb.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_variation2.tmp
Destination file name => %s/@copy_variation2_mb.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_variation2.tmp
Destination file name => %s/#copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 4 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/+copy_variation2.tmp
Destination file name => %s/+copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

Expand All @@ -130,21 +130,21 @@ Existence of destination file => bool(false)
-- Iteration 7 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/!copy_variation2.tmp
Destination file name => %s/!copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 8 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/&copy_variation2.tmp
Destination file name => %s/&copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 9 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/(copy_variation2.tmp
Destination file name => %s/(copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

Expand All @@ -157,35 +157,35 @@ Existence of destination file => bool(false)
-- Iteration 11 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/;copy_variation2.tmp
Destination file name => %s/;copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 12 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/=copy_variation2.tmp
Destination file name => %s/=copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 13 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/[copy_variation2.tmp
Destination file name => %s/[copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 14 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/^copy_variation2.tmp
Destination file name => %s/^copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 15 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/{copy_variation2.tmp
Destination file name => %s/{copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

Expand All @@ -198,14 +198,14 @@ Existence of destination file => bool(false)
-- Iteration 17 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/~copy_variation2.tmp
Destination file name => %s/~copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)

-- Iteration 18 --
Copy operation => bool(true)
Existence of destination file => bool(true)
Destination file name => %s/$copy_variation2.tmp
Destination file name => %s/$copy_variation2_mb.tmp
Size of source file => int(1500)
Size of destination file => int(1500)
*** Done ***
Loading