| H A D | ksft.py | 73 def ksft_eq(a, b, comment=""): 76 _fail("Check failed", a, "!=", b, comment) 79 def ksft_ne(a, b, comment=""): 82 _fail("Check failed", a, "==", b, comment) 85 def ksft_true(a, comment=""): argument 87 _fail("Check failed", a, "does not eval to True", comment) 90 def ksft_not_none(a, comment=""): argument 92 _fail("Check failed", a, "is None", comment) 95 def ksft_in(a, b, comment=""): argument 97 _fail("Check failed", a, "not in", b, comment) 58 ksft_eq(a, b, comment="") global() argument 64 ksft_ne(a, b, comment="") global() argument 70 ksft_true(a, comment="") global() argument 75 ksft_in(a, b, comment="") global() argument 80 ksft_not_in(a, b, comment="") global() argument 118 ksft_busy_wait(cond, sleep=0.005, deadline=1, comment="") global() argument 129 ktap_result(ok, cnt=1, case="", comment="") global() argument [all...] |