1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
$combinations = [
['
--grammar=conf/metadata_locking.yy
--gendata=conf/metadata_locking.zz
--queries=100K
--duration=600
--basedir=/build/bzr/azalea-bugfixing
--validator=ResultsetProperties
--reporters=Deadlock,ErrorLog,Backtrace,Shutdown
--mysqld=--innodb-lock-wait-timeout=1
--mysqld=--transaction-isolation=REPEATABLE-READ
'], [
'--engine=MyISAM',
'--engine=MEMORY',
'--engine=Innodb'
], [
'--rows=1',
'--rows=10',
'--rows=100',
],
[
'--threads=4',
'--threads=8',
'--threads=16',
'--threads=32',
'--threads=64',
'--threads=128'
]
];
|