]> granicus.if.org Git - check/commitdiff
Add comments on the meanings of the logging events
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 17 Dec 2013 16:06:55 +0000 (16:06 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 17 Dec 2013 16:06:55 +0000 (16:06 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@875 64e312b2-a51f-0410-8e61-82d0ca0eb02a

src/check_impl.h

index 45a48a0dc4e33156b40bcb1d286ccec9a4936c18..ec8bda23571878bc5eb73b9cbb1c5d4fced9be3a 100644 (file)
@@ -83,14 +83,14 @@ TestResult *tr_create(void);
 void tr_reset(TestResult *tr);
 
 enum cl_event {
-  CLINITLOG_SR,
-  CLENDLOG_SR,
-  CLSTART_SR,
-  CLSTART_S,
-  CLEND_SR,
-  CLEND_S,
-  CLSTART_T, /* A test case is about to run */
-  CLEND_T
+  CLINITLOG_SR, /* Initialize log file */
+  CLENDLOG_SR,  /* Tests are complete */
+  CLSTART_SR,   /* Suite runner start */
+  CLSTART_S,    /* Suite start */
+  CLEND_SR,     /* Suite runner end */
+  CLEND_S,      /* Suite end */
+  CLSTART_T,    /* A test case is about to run */
+  CLEND_T       /* Test case end */
 };
 
 typedef void (*LFun) (SRunner *, FILE*, enum print_output,