1
0
Fork 0

Merging upstream version 2.5.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 12:24:13 +01:00
parent 3d70d3c76b
commit ee6621a5b2
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
507 changed files with 19440 additions and 17258 deletions

View file

@ -43,6 +43,12 @@ static struct tonum_test tonum_tests[] = {
{ "2,33", 0, -EINVAL },
{ "3..3", 0, -EINVAL },
{ "123.12MM", 0, -EINVAL },
{ "800G", 800000000000, 0 },
{ "800GG", 0, -EINVAL },
{ "800G800", 0, -EINVAL },
{ "800.0G", 800000000000, 0 },
{ "800.G", 0, -EINVAL },
{ "800.", 0, -EINVAL },
};
void tonum_test(struct tonum_test *test)