Submitter | phabricator |
---|---|
Date | July 10, 2018, 6:25 a.m. |
Message ID | <differential-rev-PHID-DREV-qwvdrdniizawn4lycjrh-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/32727/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/tests/basic_test_result.py b/tests/basic_test_result.py --- a/tests/basic_test_result.py +++ b/tests/basic_test_result.py @@ -39,6 +39,12 @@ def addIgnore(self, test, reason): print("IGNORE!", test, reason) + def onStart(self, test): + print("ON_START!", test) + + def onEnd(self): + print("ON_END!") + def addOutputMismatch(self, test, ret, got, expected): return False