• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..10-Feb-2022-

README.checksumH A D10-Feb-2022738 2418

checksum.plH A D10-Feb-20224.8 KiB165125

README.checksum

1Binlog checksum testing
2=======================
3
41. How it works.
5The script copies a <suite> to directory <suite>_checksum,
6collects test case names for t/ directory (except tests from
7disabled def), randomly choose 90% of tests and add them
8to disabled.def.
9It means that mtr will run only 10% of random tests from each
10suite.
11At end the script run mtr:
12./mysql-test-run.pl --suite=aaa_checksum,bbb_checksum \
13    --mysqld=--binlog-checksum=CRC32 arg1 ... argN
14
15aaa,bbb 	- suite names from --suite option
16arg1,argN	- other command-line arguments of checksum.pl
17
182. The options:
19
20--suite=suite1,suite2.  Mandatory option. The list of suites for
21    binlog checksum testing.
22
23--percent=N, where N is 1..99. Percent of running tests.
24