summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2018-10-30 15:53:28 +0000
committerStuart Monteith <stuart.monteith@linaro.org>2018-10-30 15:53:28 +0000
commite6830504fdbeed9f1d6b6497413f5343b6707021 (patch)
treee0d7a0a559ca41c591b99bf60b8bae0992883b29
parenta200019f0cd60b96a4868ce35ea52e7475bc302a (diff)
Remove missing expected field from csv.
-rwxr-xr-xprint-historic-results.py2
-rwxr-xr-xupdate-results-db2
2 files changed, 2 insertions, 2 deletions
diff --git a/print-historic-results.py b/print-historic-results.py
index 7c5f12b..e739903 100755
--- a/print-historic-results.py
+++ b/print-historic-results.py
@@ -46,7 +46,7 @@ body <= P("\
This test measures the performance of the server and client compilers \
running Hadoop sorting a {}GB file using Terasort and compares \
the performance against the baseline performance of the Zero interpreter \
-and against the baseline performance of the client and server compilers \
+and against the baseline performance of the server compilers \
on {}.".format(os.getenv('NGIGABYTES'), os.getenv('BASEDATE')))
body <= P("\
diff --git a/update-results-db b/update-results-db
index 0ce0676..446dabc 100755
--- a/update-results-db
+++ b/update-results-db
@@ -31,7 +31,7 @@ fi
rm -f $RESULTS_DB
sqlite3 $RESULTS_DB <<EOF
drop table if exists results;
-create table results (timestamp integer, jvm_type text, ngigabytes integer, elapsed_time integer, UNIQUE (timestamp, jvm_type) ON CONFLICT REPLACE);
+create table results (timestamp integer, ngigabytes integer, elapsed_time integer, UNIQUE (timestamp, jvm_type) ON CONFLICT REPLACE);
.separator ","
.import ${BENCHMARK_RESULTS_DIR}/results.csv results
EOF