summaryrefslogtreecommitdiff
path: root/sql-bench/run-all-tests.sh
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-12-18 05:34:00 +0200
committermonty@hundin.mysql.fi <>2001-12-18 05:34:00 +0200
commit0048a58f0390336ab6a812d83ded87055c177f2f (patch)
treefd9b8b5be51e148f724af20f6edf3f0a36ba06a3 /sql-bench/run-all-tests.sh
parent1eb99ae80b4ab4f1057207358a4d0e3eea72ec84 (diff)
downloadmariadb-git-0048a58f0390336ab6a812d83ded87055c177f2f.tar.gz
Updated benchmarks
Portability fixes. Fixed bug in mysqlbinlog when detecting binary log version
Diffstat (limited to 'sql-bench/run-all-tests.sh')
-rw-r--r--sql-bench/run-all-tests.sh16
1 files changed, 11 insertions, 5 deletions
diff --git a/sql-bench/run-all-tests.sh b/sql-bench/run-all-tests.sh
index eb07d85be03..f392431140c 100644
--- a/sql-bench/run-all-tests.sh
+++ b/sql-bench/run-all-tests.sh
@@ -109,7 +109,9 @@ print "Running tests on: $machine\n";
print "Arguments: $log_prog_args\n";
print "Comments: $opt_comments\n";
print "Limits from: $opt_cmp\n";
-print "Server version: $server_version\n\n";
+print "Server version: $server_version\n";
+print "Optimization: $opt_optimization\n";
+print "Hardware: $opt_hw\n\n";
$estimated=$warning=$got_warning=0;
@@ -285,10 +287,6 @@ sub read_headers
{
$log_prog_args=$1;
}
- elsif (/^Comments.*:\s+(.*)$/)
- {
- $opt_comments=$1;
- }
elsif (/^Limits.*:\s+(.*)$/)
{
$opt_cmp=$1;
@@ -297,6 +295,14 @@ sub read_headers
{
$server_version=$1;
}
+ elsif (/^Optimiz.*:\s+(.*)$/)
+ {
+ $opt_optimization=$1;
+ }
+ elsif (/^Hardwar.*:\s+(.*)$/)
+ {
+ $opt_hw=$1;
+ }
}
close(TMP);
}