roll the positive cases for int16, int32 back into the existing test

This commit is contained in:
Sven M. Hallberg 2013-05-20 15:26:14 +02:00
parent 482851b3e2
commit e5300e2836

View file

@ -39,10 +39,6 @@ static void test_int32(void) {
g_check_parse_ok(int32_, "\xff\xfe\x00\x00", 4, "s-0x20000"); g_check_parse_ok(int32_, "\xff\xfe\x00\x00", 4, "s-0x20000");
g_check_parse_failed(int32_, "\xff\xfe\x00", 3); g_check_parse_failed(int32_, "\xff\xfe\x00", 3);
}
static void test_int32_pos(void) {
const HParser *int32_ = h_int32();
g_check_parse_ok(int32_, "\x00\x02\x00\x00", 4, "s0x20000"); g_check_parse_ok(int32_, "\x00\x02\x00\x00", 4, "s0x20000");
g_check_parse_failed(int32_, "\x00\x02\x00", 3); g_check_parse_failed(int32_, "\x00\x02\x00", 3);
@ -53,10 +49,6 @@ static void test_int16(void) {
g_check_parse_ok(int16_, "\xfe\x00", 2, "s-0x200"); g_check_parse_ok(int16_, "\xfe\x00", 2, "s-0x200");
g_check_parse_failed(int16_, "\xfe", 1); g_check_parse_failed(int16_, "\xfe", 1);
}
static void test_int16_pos(void) {
const HParser *int16_ = h_int16();
g_check_parse_ok(int16_, "\x02\x00", 2, "s0x200"); g_check_parse_ok(int16_, "\x02\x00", 2, "s0x200");
g_check_parse_failed(int16_, "\x02", 1); g_check_parse_failed(int16_, "\x02", 1);
@ -409,9 +401,7 @@ void register_parser_tests(void) {
g_test_add_func("/core/parser/ch_range", test_ch_range); g_test_add_func("/core/parser/ch_range", test_ch_range);
g_test_add_func("/core/parser/int64", test_int64); g_test_add_func("/core/parser/int64", test_int64);
g_test_add_func("/core/parser/int32", test_int32); g_test_add_func("/core/parser/int32", test_int32);
g_test_add_func("/core/parser/int32_pos", test_int32_pos);
g_test_add_func("/core/parser/int16", test_int16); g_test_add_func("/core/parser/int16", test_int16);
g_test_add_func("/core/parser/int16_pos", test_int16_pos);
g_test_add_func("/core/parser/int8", test_int8); g_test_add_func("/core/parser/int8", test_int8);
g_test_add_func("/core/parser/uint64", test_uint64); g_test_add_func("/core/parser/uint64", test_uint64);
g_test_add_func("/core/parser/uint32", test_uint32); g_test_add_func("/core/parser/uint32", test_uint32);