summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug54292.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug54292.phpt')
-rw-r--r--ext/spl/tests/bug54292.phpt14
1 files changed, 14 insertions, 0 deletions
diff --git a/ext/spl/tests/bug54292.phpt b/ext/spl/tests/bug54292.phpt
new file mode 100644
index 000000000..d9175f7e6
--- /dev/null
+++ b/ext/spl/tests/bug54292.phpt
@@ -0,0 +1,14 @@
+--TEST--
+Bug #54292 (Wrong parameter causes crash in SplFileObject::__construct())
+--FILE--
+<?php
+
+try {
+ new SplFileObject('foo', array());
+} catch (Exception $e) {
+ var_dump($e->getMessage());
+}
+
+?>
+--EXPECTF--
+string(74) "SplFileObject::__construct() expects parameter 2 to be string, array given"