check that der_parse_hex_heim_integer() handles odd length numbers.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16572 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-01-16 23:02:16 +00:00
parent 8018ea69c2
commit 905a9d79b8

View File

@@ -651,6 +651,7 @@ test_heim_int_format(void)
ret += check_heim_integer_same("-10", "-10", &i2);
ret += check_heim_integer_same("-00000010", "-10", &i2);
ret += check_heim_integer_same("01", "01", &i3);
ret += check_heim_integer_same("1", "01", &i3);
return ret;
}