Lines Matching refs:convtime
28 ASSERT_INT_EQ(convtime("0"), 0); in tests()
29 ASSERT_INT_EQ(convtime("1"), 1); in tests()
30 ASSERT_INT_EQ(convtime("1S"), 1); in tests()
32 ASSERT_INT_EQ(convtime("90m"), 5400); in tests()
33 ASSERT_INT_EQ(convtime("1h30m"), 5400); in tests()
34 ASSERT_INT_EQ(convtime("2d"), 172800); in tests()
35 ASSERT_INT_EQ(convtime("1w"), 604800); in tests()
38 ASSERT_INT_EQ(convtime("-7"), -1); in tests()
39 ASSERT_INT_EQ(convtime("-9d"), -1); in tests()
43 ASSERT_INT_EQ(convtime(buf), INT_MAX); in tests()
45 ASSERT_INT_EQ(convtime(buf), -1); in tests()
49 ASSERT_INT_EQ(convtime(buf), -1); in tests()
50 ASSERT_INT_EQ(convtime("1000000000000000000000w"), -1); in tests()