summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-15 04:10:51 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-15 04:10:51 +0000
commit409b0eea3b41f02e402346c48b765ea8693c19e4 (patch)
treede2992727ce357dad0ba5a7a7eca589307dba580
parent715f9e55d9af912cc193f79328024c1af9e5e25f (diff)
More minor cleanups
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@56 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
-rw-r--r--cleanbench.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cleanbench.c b/cleanbench.c
index 7e8d0ad..47f4466 100644
--- a/cleanbench.c
+++ b/cleanbench.c
@@ -88,14 +88,14 @@ main(int argc, char *argv[])
int test; /* Index */
puts( "TEST : Iterations/sec. : Old Index : New Index\n"
- " : : Pentium 90* : AMD K6/233*"
+ " : : Pentium 90 : AMD K6/233\n"
"--------------------:------------------:-------------:------------");
for (test = NUMSORT; test < NUMTESTS; test++) {
printf("%s :", test_name[test]);
if (!bench_with_confidence(test, &bmean, &bstdev, &bnumrun)) {
- printf( "\n** WARNING: The current test result is NOT 95 % statistically certain.\n"
+ printf( "\n** WARNING: The current test result is NOT 95 %% statistically certain.\n"
"** WARNING: The variation among the individual results is too large.\n"
" :");
}
@@ -116,7 +116,7 @@ main(int argc, char *argv[])
printf( "==========================ORIGINAL BYTEMARK RESULTS==========================\n"
"INTEGER INDEX : %.3f\n"
"FLOATING-POINT INDEX: %.3f\n"
- "Baseline (MSDOS*) : Pentium* 90, 256 KB L2-cache, Watcom* compiler 10.0\n"
+ "Baseline (MSDOS) : Pentium 90, 256 KB L2-cache, Watcom compiler 10.0\n"
"==============================LINUX DATA BELOW===============================\n",
pow(intindex, .142857), pow(fpindex, .33333));
hardware();
@@ -124,7 +124,7 @@ main(int argc, char *argv[])
printf( "MEMORY INDEX : %.3f\n"
"INTEGER INDEX : %.3f\n"
"FLOATING-POINT INDEX: %.3f\n"
- "Baseline (LINUX) : AMD K6/233*, 512 KB L2-cache, gcc 2.7.2.3, libc-5.4.38\n",
+ "Baseline (Linux) : AMD K6/233, 512 KB L2-cache, gcc 2.7.2.3, libc-5.4.38\n",
pow(linux_memindex, .3333333333), pow(linux_intindex, .25), pow(linux_fpindex, .3333333333));
return 0;
}