diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2011-05-15 05:21:01 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2011-05-15 05:21:01 +0000 |
commit | d19c366c4a05c1be88dc2c1cb48d19df2fefe87e (patch) | |
tree | 87176a41df419eae69a4fb12f1da0d6a44223de8 | |
parent | 654aa838cd2e626dac2ba249c196fc3338b7e9d2 (diff) | |
download | php-git-d19c366c4a05c1be88dc2c1cb48d19df2fefe87e.tar.gz |
Missed merging this into the new PHP_5_4 branch
-rw-r--r-- | ext/standard/tests/network/gethostbynamel_error.phpt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/standard/tests/network/gethostbynamel_error.phpt b/ext/standard/tests/network/gethostbynamel_error.phpt index 4a13bf021f..ab2abb7b76 100644 --- a/ext/standard/tests/network/gethostbynamel_error.phpt +++ b/ext/standard/tests/network/gethostbynamel_error.phpt @@ -20,10 +20,6 @@ $hostname = 'string_val'; $extra_arg = 10; var_dump( gethostbynamel($hostname, $extra_arg) ); -echo "\n-- Testing gethostbynamel() with an unknown host --\n"; -$hostname = 'unknownhost_zzz_xxx_yyy.'; -var_dump( gethostbynamel($hostname) ); - echo "Done"; ?> --EXPECTF-- @@ -39,6 +35,4 @@ NULL Warning: gethostbynamel() expects exactly 1 parameter, 2 given in %s on line %d NULL --- Testing gethostbynamel() with an unknown host -- -bool(false) Done |