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

set -e

# Smoke-test format as part of running "make check".
# Run with:
# 1.  The defaults
# 2.  Set idle flag to turn off operations.
# 3.  More dbs.
# 
echo "manydbs: default with operations turned on"
$TEST_WRAPPER ./t
echo "manydbs: totally idle databases"
$TEST_WRAPPER ./t -I
echo "manydbs: 40 databases with operations"
$TEST_WRAPPER ./t -D 40
echo "manydbs: 40 idle databases"
$TEST_WRAPPER ./t -I -D 40