Lines Matching refs:convtime
29 ASSERT_LONG_EQ(convtime("0"), 0); in tests()
30 ASSERT_LONG_EQ(convtime("1"), 1); in tests()
31 ASSERT_LONG_EQ(convtime("1S"), 1); in tests()
33 ASSERT_LONG_EQ(convtime("90m"), 5400); in tests()
34 ASSERT_LONG_EQ(convtime("1h30m"), 5400); in tests()
35 ASSERT_LONG_EQ(convtime("2d"), 172800); in tests()
36 ASSERT_LONG_EQ(convtime("1w"), 604800); in tests()
39 ASSERT_LONG_EQ(convtime("-7"), -1); in tests()
40 ASSERT_LONG_EQ(convtime("-9d"), -1); in tests()
44 ASSERT_LONG_EQ(convtime(buf), -1); in tests()
48 ASSERT_LONG_EQ(convtime(buf), -1); in tests()
49 ASSERT_LONG_EQ(convtime("1000000000000000000000w"), -1); in tests()