From a16c13423935177663f39b9daa1dcd8daef081b6 Mon Sep 17 00:00:00 2001 From: brarcher Date: Tue, 17 Dec 2013 16:06:55 +0000 Subject: [PATCH] Add comments on the meanings of the logging events git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@875 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- src/check_impl.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/check_impl.h b/src/check_impl.h index 45a48a0..ec8bda2 100644 --- a/src/check_impl.h +++ b/src/check_impl.h @@ -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, -- 2.40.0