File tree Expand file tree Collapse file tree 4 files changed +3
-6
lines changed Expand file tree Collapse file tree 4 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ include $pname . '/foo/hi';
46
46
?>
47
47
--CLEAN--
48
48
<?php unlink (__DIR__ . '/ ' . basename (__FILE__ , '.clean.php ' ) . '.phar.php ' ); ?>
49
- <?php rmdir (__DIR__ . '/poo ' ); ?>
50
49
<?php unlink (__DIR__ . '/fgc_edgecases.txt ' ); ?>
51
50
--EXPECTF--
52
51
file_get_contents(): Argument #1 ($filename) must be a valid path, array given
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ include $pname . '/foo/hi';
35
35
?>
36
36
--CLEAN--
37
37
<?php unlink (__DIR__ . '/ ' . basename (__FILE__ , '.clean.php ' ) . '.phar.php ' ); ?>
38
- <?php rmdir (__DIR__ . '/poo ' ); ?>
39
38
<?php unlink (__DIR__ . '/fopen_edgecases2.txt ' ); ?>
40
39
--EXPECTF--
41
40
fopen(): Argument #1 ($filename) must be a valid path, array given
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ try {
18
18
echo $ e ->getMessage (), "\n" ;
19
19
}
20
20
21
- mkdir (__DIR__ . '/poo ' );
21
+ mkdir (__DIR__ . '/opendir_edgecases ' );
22
22
chdir (__DIR__ );
23
23
24
- $ a = opendir ('poo ' );
24
+ $ a = opendir ('opendir_edgecases ' );
25
25
26
26
$ arr = array ();
27
27
while (false !== ($ b = readdir ($ a ))) {
@@ -53,7 +53,7 @@ include $pname . '/foo';
53
53
?>
54
54
--CLEAN--
55
55
<?php unlink (__DIR__ . '/ ' . basename (__FILE__ , '.clean.php ' ) . '.phar.php ' ); ?>
56
- <?php rmdir (__DIR__ . '/poo ' );
56
+ <?php rmdir (__DIR__ . '/opendir_edgecases ' );
57
57
--EXPECTF --
58
58
opendir(): Argument #1 ($path) must be a valid path, array given
59
59
.
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ include $pname . '/foo/hi';
30
30
?>
31
31
--CLEAN--
32
32
<?php unlink (__DIR__ . '/ ' . basename (__FILE__ , '.clean.php ' ) . '.phar.php ' ); ?>
33
- <?php rmdir (__DIR__ . '/poo ' ); ?>
34
33
<?php unlink (__DIR__ . '/readfile_edgecases.txt ' ); ?>
35
34
--EXPECTF--
36
35
blah
You can’t perform that action at this time.
0 commit comments