summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/checkpoint/smoke.sh
blob: cd5b2f50e2ff71f3d198dd13789f9b036833423e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh

# Smoke-test checkpoints as part of running "make check".

echo "checkpoint: 3 mixed tables"
./t -T 3 -t m || exit 1

echo "checkpoint: 6 column-store tables"
./t -T 6 -t c || exit 1

echo "checkpoint: 6 LSM tables"
./t -T 6 -t l || exit 1

echo "checkpoint: 6 mixed tables"
./t -T 6 -t m || exit 1

echo "checkpoint: 6 row-store tables"
./t -T 6 -t r || exit 1

echo "checkpoint: 6 row-store tables, named checkpoint"
./t -c 'TeSt' -T 6 -t r || exit 1