Adding upstream version 2.4+really2.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
85727a4155
commit
7819359ae2
458 changed files with 7148 additions and 5151 deletions
|
@ -3,6 +3,8 @@
|
|||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
#include <locale.h>
|
||||
|
||||
#include "../util/suffix.h"
|
||||
#include "../util/types.h"
|
||||
|
@ -11,44 +13,54 @@
|
|||
|
||||
static int test_rc;
|
||||
|
||||
static void check_num(const char *val, int lbas, __u64 exp, __u64 num)
|
||||
static void check_num(const char *val, __u64 exp, __u64 num)
|
||||
{
|
||||
if (exp == num)
|
||||
return;
|
||||
|
||||
printf("ERROR: printing {%s} (lbas %d), got '%llu', expected '%llu'\n",
|
||||
val, lbas, (unsigned long long)num, (unsigned long long)exp);
|
||||
printf("ERROR: printing {%s}, got '%llu', expected '%llu'\n",
|
||||
val, (unsigned long long)num, (unsigned long long)exp);
|
||||
|
||||
test_rc = 1;
|
||||
}
|
||||
|
||||
struct tonum_test {
|
||||
const char *val;
|
||||
int lbas;
|
||||
const __u64 exp;
|
||||
const uint64_t exp;
|
||||
int ret;
|
||||
};
|
||||
|
||||
static struct tonum_test tonum_tests[] = {
|
||||
{ "11995709440", 512, 11995709440 },
|
||||
{ "1199570940", 512, 1199570940 },
|
||||
{ "6.14T", 512, 11992187500 },
|
||||
{ "6.14T", 520, 11807692307 },
|
||||
{ "6.14T", 4096, 1499023437 },
|
||||
{ "6.14", 512, 0 },
|
||||
{ "6.14#", 512, 0 },
|
||||
{ "11995709440", 11995709440, 0 },
|
||||
{ "1199570940", 1199570940, 0},
|
||||
{ "234.567M", 234567000, 0 },
|
||||
{ "1.2k", 1200, 0 },
|
||||
{ "6.14T", 6140000000000, 0 },
|
||||
{ "123.4567k", 123456, 0 },
|
||||
{ "12345.6789101112M", 12345678910, 0},
|
||||
{ "6.14", 6, 0 },
|
||||
{ "6.14#", 0, -EINVAL },
|
||||
{ "2,33", 0, -EINVAL },
|
||||
{ "3..3", 0, -EINVAL },
|
||||
{ "123.12MM", 0, -EINVAL },
|
||||
};
|
||||
|
||||
void tonum_test(struct tonum_test *test)
|
||||
{
|
||||
__u64 num;
|
||||
bool suffixed;
|
||||
char *endptr;
|
||||
uint64_t num;
|
||||
int ret;
|
||||
|
||||
num = suffix_si_parse(test->val, &suffixed);
|
||||
ret = suffix_si_parse(test->val, &endptr, &num);
|
||||
if (ret != test->ret) {
|
||||
printf("ERROR: converting {%s} failed\n", test->val);
|
||||
test_rc = 1;
|
||||
return;
|
||||
}
|
||||
if (ret)
|
||||
return;
|
||||
|
||||
if (suffixed)
|
||||
num /= test->lbas;
|
||||
|
||||
check_num(test->val, test->lbas, test->exp, num);
|
||||
check_num(test->val, test->exp, num);
|
||||
}
|
||||
|
||||
int main(void)
|
||||
|
@ -56,6 +68,7 @@ int main(void)
|
|||
unsigned int i;
|
||||
|
||||
test_rc = 0;
|
||||
setlocale(LC_NUMERIC, "C");
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(tonum_tests); i++)
|
||||
tonum_test(&tonum_tests[i]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue