summaryrefslogtreecommitdiff
path: root/ext/imap/tests/bug32589.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/imap/tests/bug32589.phpt')
-rw-r--r--ext/imap/tests/bug32589.phpt34
1 files changed, 0 insertions, 34 deletions
diff --git a/ext/imap/tests/bug32589.phpt b/ext/imap/tests/bug32589.phpt
deleted file mode 100644
index c5030e8970..0000000000
--- a/ext/imap/tests/bug32589.phpt
+++ /dev/null
@@ -1,34 +0,0 @@
---TEST--
-Bug #32589 (crash inside imap_mail_compose() function)
---SKIPIF--
-<?php
- if (!extension_loaded("imap")) {
- die("skip imap extension not available");
- }
-?>
---FILE--
-<?php
-$m_envelope["To"] = "mail@example.com";
-$m_part1["type"] = TYPEMULTIPART;
-$m_part1["subtype"] = "mixed";
-$m_part2["type"] = TYPETEXT;
-$m_part2["subtype"] = "plain";
-$m_part2["description"] = "text_message";
-
-$m_part2["charset"] = "ISO-8859-2";
-
-$m_part2["contents.data"] = "hello";
-$m_body[1] = $m_part1;
-$m_body[2] = $m_part2;
-echo imap_mail_compose($m_envelope, $m_body);
-?>
---EXPECTF--
-MIME-Version: 1.0
-Content-Type: MULTIPART/mixed; BOUNDARY="%s"
-
-%s
-Content-Type: TEXT/plain; CHARSET=ISO-8859-2
-Content-Description: text_message
-
-hello
-%s