mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-22 02:00:00 +03:00
Comment out test_decode_form_urlencoded again. Filed issue 4449. rs=breakage
This commit is contained in:
@@ -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"];
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user