Skip to content

Instantly share code, notes, and snippets.

@darnaut
Created September 11, 2013 20:16
Show Gist options
  • Save darnaut/6529187 to your computer and use it in GitHub Desktop.
Save darnaut/6529187 to your computer and use it in GitHub Desktop.
Run a MySQL test case under various different variations that may affect its behavior: $ ~/testall.sh 1st
#!/bin/bash -xe
./mtr --check $@
./mtr --ps-protocol $@
#./mtr --cursor-protocol $@
#./mtr --view-protocol $@
#./mtr --sp-protocol $@
./mtr --ps-protocol --mysqld=--binlog-format=mixed $@
./mtr --mysqld=--binlog-format=row $@
./mtr --ps-protocol --mysqld=--binlog-format=row $@
./mtr --mysqld=--binlog-format=mixed $@
./mtr --mysqld=--binlog-format=statement $@
./mtr --embedded-server $@
./mtr --debug $@
./mtr --valgrind $@
#./mtr --mysqld=--thread-handling=pool-of-threads $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment