Searched refs:testfile (Results 1 – 7 of 7) sorted by relevance
/PHP-5.6/ext/standard/tests/file/ |
H A D | pathinfo_variation3.phpt | 15 $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 D | unlink_variation6.phpt | 17 $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 D | file_variation9.phpt | 14 $testfile = dirname(__FILE__)."/fileVar9.txt"; 24 @unlink($testfile); 26 $h = fopen($testfile, "w"); 29 var_dump(file($testfile)); 30 unlink($testfile);
|
/PHP-5.6/ext/bz2/tests/ |
H A D | bug72447.phpt | 10 $fp = fopen('testfile', 'w');
|
/PHP-5.6/ext/phar/tests/files/ |
H A D | pear2coverage.phar.php | 209 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-5.6/ |
H A D | server-tests.php | 861 $testfile = realpath("$dir/$name"); 862 $this->test_files[] = $testfile; 1107 function getENVSettings(&$section_text,$testfile) argument 1113 $sect = $this->evalSettings($testfile,$section_text['ENV']); 1120 function getEvalTestSettings($section_text,$testfile) argument 1126 $sect = $this->evalSettings($testfile,$section_text);
|
H A D | run-tests.php | 754 $testfile = realpath($argv[$i]); variable 756 if (!$testfile && strpos($argv[$i], '*') !== false && function_exists('glob')) { 770 } else if (is_dir($testfile)) { 771 find_files($testfile); 772 } else if (preg_match("/\.phpt$/", $testfile)) { 773 $test_files[] = $testfile; 902 $testfile = realpath("{$dir}/{$name}"); 903 $test_files[] = $testfile;
|
Completed in 36 milliseconds