Home
last modified time | relevance | path

Searched refs:testfile (Results 1 – 9 of 9) sorted by relevance

/PHP-7.2/ext/standard/tests/file/
H A Dpathinfo_variation3.phpt15 $testfile = "/usr/include/arpa/inet.h";
20 var_dump(pathinfo($testfile, PATHINFO_BASENAME));
21 var_dump(pathinfo($testfile, PATHINFO_FILENAME));
22 var_dump(pathinfo($testfile, PATHINFO_EXTENSION));
23 var_dump(pathinfo($testfile, PATHINFO_DIRNAME));
26 var_dump(pathinfo($testfile, PATHINFO_EXTENSION|PATHINFO_FILENAME));
27 var_dump(pathinfo($testfile, PATHINFO_EXTENSION|PATHINFO_BASENAME));
28 var_dump(pathinfo($testfile, PATHINFO_FILENAME|PATHINFO_DIRNAME));
29 var_dump(pathinfo($testfile, PATHINFO_FILENAME|PATHINFO_BASENAME));
30 var_dump(pathinfo($testfile, PATHINFO_DIRNAME|PATHINFO_EXTENSION));
[all …]
H A Dunlink_variation6.phpt17 $testfile = $subdir.'/testfile.txt';
19 touch($testfile);
20 f_exists($testfile);
22 var_dump(unlink($testfile, $context));
23 f_exists($testfile);
38 subdir/testfile.txt exists
40 subdir/testfile.txt doesn't exist
H A Dfile_variation9.phpt14 $testfile = dirname(__FILE__)."/fileVar9.txt";
24 @unlink($testfile);
26 $h = fopen($testfile, "w");
29 var_dump(file($testfile));
30 unlink($testfile);
/PHP-7.2/sapi/phpdbg/
H A Dcreate-test.php104 while (!isset($testfile)) {
106 $testfile = trim(fgets(STDIN)); variable
107 if ($testfile != "" && file_exists($testfile)) {
111 unset($testfile);
139 if ($testfile == "") {
141 } elseif (file_put_contents($testfile, $testdata)) {
142 print "Test saved to $testfile\n";
144 print "The test could not be saved to $testfile; outputting on stderr now\n";
145 $testfile = ""; variable
148 if ($testfile == "") {
/PHP-7.2/ext/phar/tests/
H A Dbug79082.phpt12 chmod(__DIR__ . '/test79082/test79082-testfile', 0644);
20 var_dump(decoct(stat(__DIR__ . '/test79082-testfile')['mode']));
22 unlink(__DIR__ . '/test79082-testfile');
30 var_dump(decoct(stat(__DIR__ . '/test79082-testfile')['mode']));
32 unlink(__DIR__ . '/test79082-testfile');
/PHP-7.2/ext/bz2/tests/
H A Dbug72447.phpt10 $fp = fopen('testfile', 'w');
/PHP-7.2/ext/phar/tests/files/
H A Dpear2coverage.phar.php209 foreach ($tests as $testfile) {
212 $output->writeAttribute('href', $this->mangleTestFile($testfile));
213 $output->text(str_replace($testpath . '/', '', $testfile));
527 function coveragePercentage($sourcefile, $testfile = null)
529 return $this->sqlite->coveragePercentage($sourcefile, $testfile);
809 function coveragePercentage($sourcefile, $testfile = null)
811 return $this->sqlite->coveragePercentage($sourcefile, $testfile);
1148 function coveragePercentage($sourcefile, $testfile = null)
1150 if ($testfile) {
1151 $coverage = $this->retrievePathCoverageByTest($sourcefile, $testfile);
/PHP-7.2/
H A Dserver-tests.php848 $testfile = realpath("$dir/$name");
849 $this->test_files[] = $testfile;
1094 function getENVSettings(&$section_text,$testfile) argument
1100 $sect = $this->evalSettings($testfile,$section_text['ENV']);
1107 function getEvalTestSettings($section_text,$testfile) argument
1113 $sect = $this->evalSettings($testfile,$section_text);
H A Drun-tests.php793 $testfile = realpath($argv[$i]); variable
795 if (!$testfile && strpos($argv[$i], '*') !== false && function_exists('glob')) {
809 } else if (is_dir($testfile)) {
810 find_files($testfile);
811 } else if (preg_match("/\.phpt$/", $testfile)) {
812 $test_files[] = $testfile;
947 $testfile = realpath("{$dir}/{$name}");
948 $test_files[] = $testfile;

Completed in 71 milliseconds