Searched defs:test_config_parse_int_one (Results 1 - 1 of 1) sorted by relevance

/systemd/src/test/
H A Dtest-conf-parser.c64 static void test_config_parse_int_one(const char *rvalue, int expected) { function
157 test_config_parse_int_one("1024", 1024);
158 test_config_parse_int_one("-1024", -1024);
159 test_config_parse_int_one("0", 0);
161 test_config_parse_int_one("99999999999999999999999999999999999999999999999999999999", -1);
162 test_config_parse_int_one("-99999999999999999999999999999999999999999999999999999999", -1);
163 test_config_parse_int_one("1G", -1);
164 test_config_parse_int_one("garbage", -1);

Completed in 2287 milliseconds