File: script_select_random_common.sh

package info (click to toggle)
sysbench 1.0.20%2Bds-8
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,840 kB
  • sloc: ansic: 11,830; sh: 1,752; xml: 736; makefile: 195
file content (40 lines) | stat: -rw-r--r-- 1,071 bytes parent folder | download | duplicates (4)
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
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env bash
#
################################################################################
# Common code for select_random_* tests
#
# Expects the following variables and callback functions to be defined by the
# caller:
#
#   DB_DRIVER_ARGS -- extra driver-specific arguments to pass to sysbench
#
#   db_show_table() -- called with a single argument to dump a specified table
#                      schema
################################################################################

set -eu

for test in select_random_points select_random_ranges
do
    ARGS="${SBTEST_SCRIPTDIR}/${test}.lua $DB_DRIVER_ARGS --tables=1"

    sysbench $ARGS prepare

    db_show_table sbtest1

    for i in $(seq 2 8)
    do
        db_show_table sbtest${i} || true # Error on non-existing table
    done

    sysbench $ARGS --events=100 run

    sysbench $ARGS cleanup

    for i in $(seq 1 8)
    do
        db_show_table sbtest${i} || true # Error on non-existing table
    done

    ARGS="${SBTEST_SCRIPTDIR}/select_random_points.lua $DB_DRIVER_ARGS --tables=8"
done