summaryrefslogtreecommitdiffstats
path: root/tests/reduce_deps.sh
blob: 569a16c577008915811d2350e15b902d7b50fabc (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/sh
#
# reduce_deps() tests
#
# Copyright (C) 2014  Patrick "P. J." McDermott
#
# This file is part of the ProteanOS Development Kit.
#
# The ProteanOS Development Kit is free software: you can redistribute
# it and/or modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# The ProteanOS Development Kit is distributed in the hope that it
# will be useful, but WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with the ProteanOS Development Kit.  If not, see
# <http://www.gnu.org/licenses/>.

. "${srcdir}/tests/common.sh"

use deps

do_test()
{
	local deps="${1}"
	local union="${2}"
	local host_arch="${3}"
	local host_plat="${4}"
	local result="${5}"

	deps="$(reduce_deps "${deps}" "${union}" "${host_arch}" "${host_plat}")"

	if [ "x${deps}" != "x${result}" ]; then
		${union} && printf 'Union' || printf 'Normal'
		printf ' dependency list for '
		printf 'host arch "%s" and host plat "%s":\n' \
			"${host_arch}" "${host_plat}"
		printf '  "%s" != "%s"\n' \
			"${deps}" "${result}"
		tests_es=1
	fi
}

# Normal and union AND-lists.

do_test 'foo, bar' false 'amd64-linux-glibc' 'dev' 'foo, bar'

do_test 'foo,bar' false 'amd64-linux-glibc' 'dev' 'foo, bar'

do_test 'foo,   bar' false 'amd64-linux-glibc' 'dev' 'foo, bar'

do_test 'foo, bar' true 'amd64-linux-glibc' 'dev' 'foo, bar'

do_test 'foo,bar' true 'amd64-linux-glibc' 'dev' 'foo, bar'

do_test 'foo,   bar' true 'amd64-linux-glibc' 'dev' 'foo, bar'

# Normal and union OR-lists.

do_test 'foo | bar' false 'amd64-linux-glibc' 'dev' 'foo | bar'

do_test 'foo|bar' false 'amd64-linux-glibc' 'dev' 'foo | bar'

do_test 'foo   |   bar' false 'amd64-linux-glibc' 'dev' 'foo | bar'

# Normal and union AND-lists with arch specs.

do_test 'foo [amd64-linux-glibc], bar [!amd64-linux-glibc]' false \
	'amd64-linux-glibc' 'dev' 'foo'

do_test 'foo [amd64-linux-glibc], bar [!amd64-linux-glibc]' true \
	'amd64-linux-glibc' 'dev' 'foo'

# Normal and union AND-lists with plat specs.

do_test 'foo <dev>, bar <!dev>' false 'amd64-linux-glibc' 'dev' 'foo'

do_test 'foo <dev>, bar <!dev>' true 'amd64-linux-glibc' 'dev' 'foo'