summaryrefslogtreecommitdiffstats
path: root/src/usr/cxxtest
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2013-11-13 14:22:51 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2013-11-14 15:01:05 -0600
commit7128a4586656f1c9cdcf95b2e42080c9ae195bc3 (patch)
tree935c289184231290a3261d4e1aafcc545a0a7f6c /src/usr/cxxtest
parent9a6797492fe16ae9ce2bfb71760c122953879095 (diff)
downloadtalos-hostboot-7128a4586656f1c9cdcf95b2e42080c9ae195bc3.tar.gz
talos-hostboot-7128a4586656f1c9cdcf95b2e42080c9ae195bc3.zip
Remove console.H from CxxTest driver include.
Change-Id: Ifd3003cc05cdb2ecd91824250c56e9cec62eaa75 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/7232 Tested-by: Jenkins Server Reviewed-by: MIKE J. JONES <mjjones@us.ibm.com> Reviewed-by: Donald E. Dahle <dedahle@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/cxxtest')
-rwxr-xr-xsrc/usr/cxxtest/TestSuite.C3
-rwxr-xr-xsrc/usr/cxxtest/cxxtestgen.pl8
2 files changed, 6 insertions, 5 deletions
diff --git a/src/usr/cxxtest/TestSuite.C b/src/usr/cxxtest/TestSuite.C
index bdd03244f..cb187950d 100755
--- a/src/usr/cxxtest/TestSuite.C
+++ b/src/usr/cxxtest/TestSuite.C
@@ -29,7 +29,6 @@
#include <limits.h>
#include <stdarg.h>
#include <arch/ppc.H>
-#include <kernel/console.H>
#include <cxxtest/TestSuite.H>
@@ -135,8 +134,6 @@ void reportTotalTests( const char *suitename,
TRACDCOMP( g_trac_test,
"Suite %s Completed ",
suitename );
- // printk( "%s completed %ld tests\n", suitename, numtests);
-
return;
}
diff --git a/src/usr/cxxtest/cxxtestgen.pl b/src/usr/cxxtest/cxxtestgen.pl
index f38c91aa6..cb24ccbd5 100755
--- a/src/usr/cxxtest/cxxtestgen.pl
+++ b/src/usr/cxxtest/cxxtestgen.pl
@@ -636,7 +636,7 @@ sub writeHostBootPreamble() {
## print the standard includes for Hostboot
print "\n";
- print "#include <kernel/console.H>\n";
+ print "#include <kernel/console.H>\n" if ($debug);
print "#include <sys/sync.h>\n";
print "#include <sys/vfs.h>\n";
print "#include <sys/task.h>\n";
@@ -694,7 +694,11 @@ sub writeHostBootSuites() {
## run each of the tests in the list
foreach (@{suiteTests()}) {
$test = $_;
- print "\tprintkd(\"CxxTest: Executing ", suiteName(), " ", testName(), ".\\n\");\n";
+ if ( $debug )
+ {
+ print "\tprintkd(\"CxxTest: Executing ", suiteName(), " ",
+ testName(), ".\\n\");\n";
+ }
printf "\t$suitevar->%s();\n\n", testName();
$testcount++;
}
OpenPOWER on IntegriCloud