[PATCH 4/6] lib: fwts_framework: print_summary should be a bool

Colin King colin.king at canonical.com
Wed Nov 21 16:24:43 UTC 2012


From: Colin Ian King <colin.king at canonical.com>

Make print_summary a bool type, set it using true rather than 1

Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
 src/lib/include/fwts_framework.h |    2 +-
 src/lib/src/fwts_framework.c     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/include/fwts_framework.h b/src/lib/include/fwts_framework.h
index 32bab8c..0d9e2aa 100644
--- a/src/lib/include/fwts_framework.h
+++ b/src/lib/include/fwts_framework.h
@@ -117,7 +117,7 @@ typedef struct {
 	uint32_t	total_run;		/* total number of major tests run */
 
 	int minor_test_progress;		/* Percentage completion of current test */
-	int print_summary;			/* Print summary of results at end of test runs */
+	bool print_summary;			/* Print summary of results at end of test runs */
 	fwts_log_level failed_level;		/* Bit mask of failed levels in test run */
 
 	fwts_list test_taglist;			/* List of tags found when running all minor tests */
diff --git a/src/lib/src/fwts_framework.c b/src/lib/src/fwts_framework.c
index e515e05..c940305 100644
--- a/src/lib/src/fwts_framework.c
+++ b/src/lib/src/fwts_framework.c
@@ -489,7 +489,7 @@ static int fwts_framework_run_test(fwts_framework *fw, fwts_framework_test *test
 
 	/* Not a utility test?, then we require a test summary at end of the test run */
 	if (!(test->flags & FWTS_FLAG_UTILS))
-		fw->print_summary = 1;
+		fw->print_summary = true;
 
 	if (test->ops->description) {
 		fwts_log_heading(fw, "%s", test->ops->description);
-- 
1.7.10.4




More information about the fwts-devel mailing list