summaryrefslogtreecommitdiff
path: root/ext/xslt/tests/bug17791.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/xslt/tests/bug17791.phpt')
-rw-r--r--ext/xslt/tests/bug17791.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/ext/xslt/tests/bug17791.phpt b/ext/xslt/tests/bug17791.phpt
deleted file mode 100644
index 0a9446e1b0..0000000000
--- a/ext/xslt/tests/bug17791.phpt
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-Pass long string to 'file' argument, bug #17791
---SKIPIF--
-<?php include("skipif.inc"); ?>
---FILE--
-<?php
-$xmlstring = str_repeat('x', 512);
-$xslstring = 'x';
-$xh = xslt_create();
-$result = @xslt_process($xh, $xmlstring, $xslstring);
-@xslt_free($xh);
-echo("OK");
-?>
---EXPECT--
-OK