summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/standard/tests/time/strptime_error.phpt6
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===