Searched refs:test_format_bytes_one (Results 1 – 1 of 1) sorted by relevance
/systemd-251/src/test/ |
D | test-format-util.c | 21 static void test_format_bytes_one(uint64_t val, bool trailing_B, const char *iec_with_p, const char… in test_format_bytes_one() function 32 test_format_bytes_one(900, true, "900B", "900B", "900B", "900B"); in TEST() 33 test_format_bytes_one(900, false, "900", "900", "900", "900"); in TEST() 34 test_format_bytes_one(1023, true, "1023B", "1023B", "1.0K", "1K"); in TEST() 35 test_format_bytes_one(1023, false, "1023", "1023", "1.0K", "1K"); in TEST() 36 test_format_bytes_one(1024, true, "1.0K", "1K", "1.0K", "1K"); in TEST() 37 test_format_bytes_one(1024, false, "1.0K", "1K", "1.0K", "1K"); in TEST() 38 test_format_bytes_one(1100, true, "1.0K", "1K", "1.1K", "1K"); in TEST() 39 test_format_bytes_one(1500, true, "1.4K", "1K", "1.5K", "1K"); in TEST() 40 test_format_bytes_one(UINT64_C(3)*1024*1024, true, "3.0M", "3M", "3.1M", "3M"); in TEST() [all …]
|