let DEV_2 be trunk
[m6w6/ext-http] / tests / chunked_decode_003.phpt
diff --git a/tests/chunked_decode_003.phpt b/tests/chunked_decode_003.phpt
deleted file mode 100644 (file)
index c9da8c2..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
---TEST--
-http_chunked_decode() truncated message
---SKIPIF--
-<?php
-include 'skip.inc';
-?>
---FILE--
-<?php
-echo "-TEST\n";
-$data =
-"02\r\n".
-"ab\r\n".
-"04\r\n".
-"ra\nc\r\n".
-"06\r\n".
-"adabra\r\n".
-"ff\r\n".
-"\nall we got\n";
-var_dump(http_chunked_decode($data));
-?>
---EXPECTF--
-%aTEST
-%aWarning%ahttp_chunked_decode()%aTruncated message: chunk size 255 exceeds remaining data size 12 at pos 34 of 46 in%a
-string(24) "abra
-cadabra
-all we got
-"