There's wrong code in jTPCC.java, which cause the output format of informativeText become incorrect.(I run it in Linux)
jTPCC.java:
for (int count = 0; count < 1+informativeText.length(); count++)
the above should be:
for (int count = 0; count < informativeText.length(); count++)
BTW:
I want to write a script to parse the output of runBenchmark.sh, but there is too many informativeText output if i redirect the stdout to a log file.
Could write the informativeText to stderr instead of stdout. As the following.
System.err.print(informativeText);
for (int count = 0; count < informativeText.length(); count++)
System.err.print("\b");