summaryrefslogtreecommitdiff
path: root/tests/drm_getopt.sh
blob: a94a7594a2a257f08ce313571b7707f4959c402c (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This is required for check/distcheck target as it has to --list-subtests
# for each test. Source it if you add a new test in form of a (shell) script.

# See tests/vgem_reload_basic

IGT_EXIT_TIMEOUT=78
IGT_EXIT_SKIP=77
IGT_EXIT_SUCCESS=0
IGT_EXIT_INVALID=79
IGT_EXIT_FAILURE=99

# hacked-up long option parsing
for arg in $@ ; do
	case $arg in
		--list-subtests)
			exit $IGT_EXIT_INVALID
			;;
		--run-subtest)
			exit $IGT_EXIT_INVALID
			;;
		--debug)
			IGT_LOG_LEVEL=debug
			;;
		--help-description)
			echo $IGT_TEST_DESCRIPTION
			exit $IGT_EXIT_SUCCESS
			;;
		--help)
			echo "Usage: `basename $0` [OPTIONS]"
			echo "  --list-subtests"
			echo "  --run-subtest <pattern>"
			echo "  --debug"
			echo "  --help-description"
			echo "  --help"
			exit $IGT_EXIT_SUCCESS
			;;
	esac
done