mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
test-cutils: Cover qemu_strtosz() invalid input
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <1487708048-2131-12-git-send-email-armbru@redhat.com>
This commit is contained in:
parent
019144b286
commit
18aec47967
@ -1441,6 +1441,28 @@ static void test_qemu_strtosz_float(void)
|
||||
g_assert(endptr == str + 7);
|
||||
}
|
||||
|
||||
static void test_qemu_strtosz_invalid(void)
|
||||
{
|
||||
const char *str;
|
||||
char *endptr = NULL;
|
||||
int64_t res;
|
||||
|
||||
str = "";
|
||||
res = qemu_strtosz(str, &endptr);
|
||||
g_assert_cmpint(res, ==, -EINVAL);
|
||||
g_assert(endptr == str);
|
||||
|
||||
str = " \t ";
|
||||
res = qemu_strtosz(str, &endptr);
|
||||
g_assert_cmpint(res, ==, -EINVAL);
|
||||
g_assert(endptr == str);
|
||||
|
||||
str = "crap";
|
||||
res = qemu_strtosz(str, &endptr);
|
||||
g_assert_cmpint(res, ==, -EINVAL);
|
||||
g_assert(endptr == str);
|
||||
}
|
||||
|
||||
static void test_qemu_strtosz_erange(void)
|
||||
{
|
||||
const char *str = "10E";
|
||||
@ -1652,6 +1674,8 @@ int main(int argc, char **argv)
|
||||
test_qemu_strtosz_units);
|
||||
g_test_add_func("/cutils/strtosz/float",
|
||||
test_qemu_strtosz_float);
|
||||
g_test_add_func("/cutils/strtosz/invalid",
|
||||
test_qemu_strtosz_invalid);
|
||||
g_test_add_func("/cutils/strtosz/erange",
|
||||
test_qemu_strtosz_erange);
|
||||
g_test_add_func("/cutils/strtosz/suffix-unit",
|
||||
|
Loading…
Reference in New Issue
Block a user