提交 4c441e95 编写于 作者: T Tim Chevalier

Comment out test_decode_form_urlencoded again. Filed issue 4449. rs=breakage

上级 a82c8b3d
......@@ -1077,6 +1077,9 @@ fn test_encode_form_urlencoded() {
#[test]
fn test_decode_form_urlencoded() {
// FIXME #4449: Commented out because this causes an ICE, but only
// on FreeBSD
/*
assert decode_form_urlencoded(~[]).len() == 0;
let s = str::to_bytes("a=1&foo+bar=abc&foo+bar=12+%3D+34");
......@@ -1084,5 +1087,6 @@ fn test_decode_form_urlencoded() {
assert form.len() == 2;
assert form.get_ref(&~"a") == &~[~"1"];
assert form.get_ref(&~"foo bar") == &~[~"abc", ~"12 = 34"];
*/
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册