mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 05:00:45 +00:00
14 lines
258 B
Bash
14 lines
258 B
Bash
#!/bin/bash
|
|
|
|
TESTS=1
|
|
TMPDIR=$TEST_TMPDIR
|
|
|
|
cat <<EOF > $TMPDIR/expected
|
|
Binlogs | 20
|
|
Zero-Sized | 3
|
|
Total Size | 6.5G
|
|
EOF
|
|
|
|
summarize_binlogs samples/mysql-master-logs-001.txt > $TMPDIR/got
|
|
no_diff $TMPDIR/expected $TMPDIR/got
|