diff options
author | chance garcia <develop@chancegarcia.com> | 2017-06-18 12:28:31 -0400 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2017-06-18 12:28:50 -0400 |
commit | d3c593a5858959810de6fd398206f18d0fffdf10 (patch) | |
tree | 1062874332629d7c29ccdc17508dae91667903c2 | |
parent | 192b2d8391b744f600dcfe0ea2fe6292c6f5294d (diff) | |
download | php-git-d3c593a5858959810de6fd398206f18d0fffdf10.tar.gz |
add test for strptime(): return false on failure
Closes https://github.com/php/php-src/pull/2583
-rw-r--r-- | ext/standard/tests/time/strptime_error.phpt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/standard/tests/time/strptime_error.phpt b/ext/standard/tests/time/strptime_error.phpt index 92c7ca3474..ae55028cb2 100644 --- a/ext/standard/tests/time/strptime_error.phpt +++ b/ext/standard/tests/time/strptime_error.phpt @@ -32,6 +32,9 @@ echo "\n-- Testing strptime() function with more than expected no. of arguments $extra_arg = 10; var_dump( strptime($date, $format, $extra_arg) ); +echo "\n-- Testing strptime() function on failure --\n"; +var_dump( strptime('foo', $format) ); + ?> ===DONE=== --EXPECTF-- @@ -51,5 +54,8 @@ NULL Warning: strptime() expects exactly 2 parameters, 3 given in %s on line %d NULL + +-- Testing strptime() function on failure -- +bool(false) ===DONE=== |