Index: kernel/generic/src/console/cmd.c
===================================================================
--- kernel/generic/src/console/cmd.c	(revision 171f9a1fe9f611d6f72a49a47ddb0eaefd93ccbd)
+++ kernel/generic/src/console/cmd.c	(revision a85aebde1fe7aa2a70f30bb24c64dade39325a93)
@@ -32,6 +32,6 @@
 
 /**
- * @file	cmd.c
- * @brief	Kernel console command wrappers.
+ * @file  cmd.c
+ * @brief Kernel console command wrappers.
  *
  * This file is meant to contain all wrapper functions for
@@ -997,5 +997,6 @@
 	
 	/* Execute the test */
-	char * ret = test->entry(false);
+	test_quiet = false;
+	char *ret = test->entry();
 	
 	/* Update and read thread accounting */
@@ -1049,5 +1050,6 @@
 		
 		/* Execute the test */
-		char * ret = test->entry(true);
+		test_quiet = true;
+		char * ret = test->entry();
 		
 		/* Update and read thread accounting */
@@ -1151,5 +1153,5 @@
 	if (!fnd)
 		printf("Unknown test\n");
-
+	
 	return 1;
 }
