Lines Matching refs:parse_errno
815 TEST(parse_errno) { in TEST() argument
816 assert_se(parse_errno("EILSEQ") == EILSEQ); in TEST()
817 assert_se(parse_errno("EINVAL") == EINVAL); in TEST()
818 assert_se(parse_errno("0") == 0); in TEST()
819 assert_se(parse_errno("1") == 1); in TEST()
820 assert_se(parse_errno("4095") == 4095); in TEST()
822 assert_se(parse_errno("-1") == -ERANGE); in TEST()
823 assert_se(parse_errno("-3") == -ERANGE); in TEST()
824 assert_se(parse_errno("4096") == -ERANGE); in TEST()
826 assert_se(parse_errno("") == -EINVAL); in TEST()
827 assert_se(parse_errno("12.3") == -EINVAL); in TEST()
828 assert_se(parse_errno("123junk") == -EINVAL); in TEST()
829 assert_se(parse_errno("junk123") == -EINVAL); in TEST()
830 assert_se(parse_errno("255EILSEQ") == -EINVAL); in TEST()
831 assert_se(parse_errno("EINVAL12") == -EINVAL); in TEST()
832 assert_se(parse_errno("-EINVAL") == -EINVAL); in TEST()
833 assert_se(parse_errno("EINVALaaa") == -EINVAL); in TEST()