summaryrefslogtreecommitdiff
path: root/tests/common.local
blob: d2b8d073e68dd6a9999183ab2ffbead8b31879fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
#
# additional arguments to various commands

# already defined, eg. via make argument
if [ -z "$TEST_ENABLE_OVERRIDE" ]; then
    # set to 'true'
    TEST_ENABLE_OVERRIDE=false

    TEST_ARGS_CHECK=--mode=lowmem
fi


# gets arguments of a current command and can decide if the argument insertion
# should happen, eg. if some option combination does not make sense or would
# break tests
_skip_spec()
{
	if echo "$TEST_ARGS_CHECK" | grep -q 'mode=lowmem' &&
	   echo "$@" | grep -q -- '--repair'; then
		return 0
	fi
	return 1
}