/php-src/ext/standard/tests/file/ |
H A D | rename_variation5.phpt | 35 echo "\n-- Renaming existing link to existing directory name --\n"; 37 echo "\n-- Renaming existing link to existing file name --\n"; 40 echo "\n-- Renaming existing file to existing directory name --\n"; 42 echo "\n-- Renaming existing file to existing link name --\n"; 45 echo "\n-- Renaming existing directory to existing file name --\n"; 71 -- Renaming existing link to existing directory name -- 76 -- Renaming existing link to existing file name -- 79 -- Renaming existing file to existing directory name -- 84 -- Renaming existing file to existing link name -- 87 -- Renaming existing directory to existing file name -- [all …]
|
H A D | copy_variation14.phpt | 2 Test copy() function: usage variations - non existing src/dest 5 /* Test copy(): Trying to create a copy of non-existing source in an existing destination 6 and an existing source in non-existing destination */ 10 echo "*** Test copy() function: Trying to create a copy of non-existing source in existing destinat… 16 …opy($file_path."/nosuchfile.tmp", $file_path."/copy_nosuchfile.tmp") ); //With non-existing source 19 echo "\n*** Test copy() function: Trying to create copy of an existing source in non-existing desti… 20 var_dump( copy($file, $file_path."/nodir/copy_nosuchfile.tmp") ); //With non-existing dir path 31 *** Test copy() function: Trying to create a copy of non-existing source in existing destination *** 36 *** Test copy() function: Trying to create copy of an existing source in non-existing destination *…
|
H A D | ftruncate_variation5-win32.phpt | 73 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 81 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 89 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 97 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 105 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 113 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 121 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 129 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 137 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 145 -- Testing ftruncate(): try truncating file to size, bigger than existing -- [all …]
|
H A D | ftruncate_variation5.phpt | 73 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 81 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 89 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 97 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 105 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 113 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 121 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 129 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 137 -- Testing ftruncate(): try truncating file to size, bigger than existing -- 145 -- Testing ftruncate(): try truncating file to size, bigger than existing -- [all …]
|
H A D | rename_variation3-win32.phpt | 18 /* test rename() by trying to rename an existing file/dir to the same name 36 echo "\n-- Renaming existing file to existing directory name --\n"; 41 echo "\n-- Renaming existing directory to existing file name --\n"; 65 -- Renaming existing file to existing directory name -- 72 -- Renaming existing directory to existing file name --
|
H A D | rename_variation8.phpt | 9 echo "\n*** Testing rename() on non-existing file ***\n"; 12 // try renaming a non existing file 21 // rename a existing dir to new name 22 echo "\n*** Testing rename() on existing directory ***\n"; 32 echo "\n*** Testing rename() on non-existing directory ***\n"; 47 *** Testing rename() on non-existing file *** 54 *** Testing rename() on existing directory *** 59 *** Testing rename() on non-existing directory ***
|
H A D | rename_variation8-win32.phpt | 9 echo "\n*** Testing rename() on non-existing file ***\n"; 12 // try renaming a non existing file 21 // rename a existing dir to new name 22 echo "\n*** Testing rename() on existing directory ***\n"; 32 echo "\n*** Testing rename() on non-existing directory ***\n"; 47 *** Testing rename() on non-existing file *** 54 *** Testing rename() on existing directory *** 59 *** Testing rename() on non-existing directory ***
|
H A D | readlink_realpath_error.phpt | 14 echo "\n*** Testing readlink() on existing file ***\n"; 17 echo "\n*** Testing readlink() on existing directory ***\n"; 31 *** Testing readlink() on existing file *** 36 *** Testing readlink() on existing directory ***
|
H A D | tempnam_variation5-win32.phpt | 2 Test tempnam() function: usage variations - existing file 12 /* Passing an existing file as $prefix for tempnam() fn */ 16 echo "*** Test tempnam() function: by passing an existing filename as prefix ***\n"; 42 *** Test tempnam() function: by passing an existing filename as prefix ***
|
H A D | tempnam_variation5.phpt | 2 Test tempnam() function: usage variations - existing file 10 /* Passing an existing file as $prefix for tempnam() fn */ 14 echo "*** Test tempnam() function: by passing an existing filename as prefix ***\n"; 40 *** Test tempnam() function: by passing an existing filename as prefix ***
|
H A D | readlink_realpath_error-win32.phpt | 14 echo "\n*** Testing readlink() on existing file ***\n"; 17 echo "\n*** Testing readlink() on existing directory ***\n"; 31 *** Testing readlink() on existing file *** 34 *** Testing readlink() on existing directory ***
|
H A D | copy_variation12-win32.phpt | 10 /* Test copy(): Trying to create a copy of an existing dir */ 14 echo "*** Test copy() function: Trying to create a copy of an existing dir ***\n"; 33 *** Test copy() function: Trying to create a copy of an existing dir ***
|
H A D | copy_variation12.phpt | 10 /* Test copy(): Trying to create a copy of an existing dir */ 14 echo "*** Test copy() function: Trying to create a copy of an existing dir ***\n"; 34 *** Test copy() function: Trying to create a copy of an existing dir ***
|
H A D | lstat_stat_error.phpt | 7 var_dump( lstat("$file_path/temp.tmp") ); // non existing file 12 var_dump( stat("$file_path/temp.tmp") ); // non existing file 13 var_dump( stat("$file_path/temp/") ); // non existing dir
|
H A D | 007_variation4.phpt | 9 checking for the file truncation when trying to open an existing file in "w+" mode, 32 var_dump( filesize($file) ); //Check for size of existing data file before opening the file in "w+… 34 fclose( fopen($file, "w+") ); //Opening the existing data file again in "w+" mode 35 var_dump( filesize($file) ); //Check for size of existing data file after opening the file in "w+"… 39 fclose( fopen($file, "w+") ); //Opening the non-existing file in "w+" mode, which will be created
|
H A D | tempnam_variation3-win32.phpt | 12 /* Passing invalid/non-existing args for $prefix */ 36 /* prefix with path separator of a non existing directory*/ 51 /* prefix with path separator of a non existing directory*/ 65 /* creating the files in existing dir */
|
/php-src/ext/standard/tests/class_object/ |
H A D | class_exists_basic_001.phpt | 13 echo "\nCalling class_exists() on existing class with autoload explicitly enabled:\n"; 18 echo "\nCalling class_exists() on existing class with autoload explicitly disabled:\n"; 23 echo "\nCalling class_exists() on existing class with autoload unspecified:\n"; 34 Calling class_exists() on existing class with autoload explicitly enabled: 40 Calling class_exists() on existing class with autoload explicitly disabled: 47 Calling class_exists() on existing class with autoload unspecified:
|
H A D | trait_exists_basic_001.phpt | 15 echo "\nCalling trait_exists() on existing trait with autoload explicitly enabled:\n"; 20 echo "\nCalling trait_exists() on existing trait with autoload explicitly disabled:\n"; 25 echo "\nCalling trait_exists() on existing trait with autoload unspecified:\n"; 36 Calling trait_exists() on existing trait with autoload explicitly enabled: 42 Calling trait_exists() on existing trait with autoload explicitly disabled: 49 Calling trait_exists() on existing trait with autoload unspecified:
|
/php-src/ext/reflection/tests/ |
H A D | ReflectionClass_hasConstant_001.phpt | 17 echo "Check existing constant: "; 19 echo "Check existing constant, different case: "; 32 Check existing constant: bool(true) 33 Check existing constant, different case: bool(false)
|
/php-src/ext/standard/tests/strings/ |
H A D | parse_str_basic1.phpt | 13 echo "\nBasic test WITH existing non-array var for result arg\n"; 19 echo "\nBasic test with an existing array as results array\n"; 39 Basic test WITH existing non-array var for result arg 50 Basic test with an existing array as results array
|
/php-src/ext/intl/tests/ |
H A D | resourcebundle_individual.phpt | 2 Test ResourceBundle::get() and length() - existing/missing keys 31 // Make sure accessing existing after non-existing works.
|
H A D | dateformat_setTimeZone_error.phpt | 14 var_dump($df->setTimeZone('non existing timezone')); 23 Warning: IntlDateFormatter::setTimeZone(): datefmt_set_timezone: No such time zone: 'non existing t…
|
/php-src/ext/session/tests/user_session_module/ |
H A D | session_set_save_handler_class_012.phpt | 2 Test session_set_save_handler() : incorrect arguments for existing handler open 14 echo "*** Testing session_set_save_handler() : incorrect arguments for existing handler open ***\n"; 44 *** Testing session_set_save_handler() : incorrect arguments for existing handler open ***
|
H A D | session_set_save_handler_class_013.phpt | 2 Test session_set_save_handler() : incorrect arguments for existing handler close 13 echo "*** Testing session_set_save_handler() : incorrect arguments for existing handler close ***\n… 40 *** Testing session_set_save_handler() : incorrect arguments for existing handler close ***
|
/php-src/ext/dom/tests/ |
H A D | DOMDocument_validate_external_dtd.phpt | 10 // reusing existing xml: http://cvs.php.net/viewvc.cgi/php-src/ext/dom/tests/dom.xml?view=co&conten… 11 // reusing existing dtd: http://cvs.php.net/viewvc.cgi/php-src/ext/dom/tests/dom.ent?view=co&conten…
|