2007-01-22 17:42:52 +01:00
|
|
|
#/bin/sh
|
|
|
|
|
2007-02-23 12:13:55 +01:00
|
|
|
hw="2xPentium(R) 3.2 GHz, 1M cache, 4G memory"
|
|
|
|
optimization="gcc 4.1.2 -m64 -O3 --static"
|
|
|
|
machine="Linux-x64"
|
|
|
|
|
|
|
|
# InnoDB tests
|
|
|
|
|
|
|
|
./run-all-tests --suffix=-innodb --comments="Engine=InnoDB --innodb_log_file_size=100M" --create-options="ENGINE=InnoDB" --hw="$hw" --optimization="$optimization" --machine="$machine" --log
|
|
|
|
|
|
|
|
./run-all-tests --suffix=_fast-innodb --comments="Engine=InnoDB --innodb_log_file_size=100M" --create-options="ENGINE=InnoDB" --hw="$hw" --optimization="$optimization" --machine="$machine" --fast --log
|
|
|
|
|
|
|
|
|
|
|
|
# MyISAM tests
|
|
|
|
|
|
|
|
./run-all-tests --suffix=-myisam --comments="Engine=MyISAM key_buffer_size=16M" --create-options="ENGINE=myisam" --hw="$hw" --optimization="$optimization" --machine="$machine" --log
|
|
|
|
|
|
|
|
./run-all-tests --suffix=_fast-myisam --comments="Engine=MyISAM key_buffer_size=16M" --create-options="ENGINE=myisam" --hw="$hw" --optimization="$optimization" --machine="$machine" --fast --log
|
|
|
|
|
|
|
|
compare-results --relative output/RUN-mysql-myisam-* output/RUN-mysql_fast-myisam* output/RUN-mysql*
|