This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec_helper' | |
describe 'Running mysql percona container' do | |
it 'should have mysql-server' do | |
expect(file('/usr/sbin/mysqld')).to exist | |
end | |
it 'should have mysql server configuration syntax correct' do | |
expect(command('mysqld --help').exit_status).to eq 0 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Measure disk speed | |
FILE=/data01/dd-data.raw | |
dd if=/dev/zero of=$FILE bs=8k count=256k conv=fdatasync; rm -rf $FILE |