Skip to content

Commit ac5e72e

Browse files
committed
Add missing clean sections
1 parent 5dae1e1 commit ac5e72e

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

ext/standard/tests/file/file_get_contents_basic.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ echo "\n*** Done ***";
2929
$file_path = __DIR__;
3030
include($file_path."/file.inc");
3131
delete_files($file_path, 1);
32+
@unlink($file_path."/file_get_contents_basic1.tmp");
3233
?>
3334
--EXPECT--
3435
*** Testing the basic functionality of the file_get_contents() function ***

ext/standard/tests/general_functions/proc_open-mb0.phpt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ proc_close($p);
3838

3939
echo $out;
4040

41+
?>
42+
--CLEAN--
43+
<?php
44+
@unlink(__DIR__ . DIRECTORY_SEPARATOR . "proc_only_mb0.php");
4145
?>
4246
--EXPECTF--
4347
array(4) {

ext/standard/tests/general_functions/proc_open-mb1.phpt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ proc_close($p);
3535

3636
echo $out;
3737

38+
?>
39+
--CLEAN--
40+
<?php
41+
@unlink(__DIR__ . DIRECTORY_SEPARATOR . "proc_only_mb1.php");
3842
?>
3943
--EXPECTF--
4044
array(4) {

0 commit comments

Comments
 (0)