summaryrefslogtreecommitdiff
blob: b64f857ec10219ae6afbd4408c36bb24d556e328 (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
#!/bin/bash
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

source tests-common.sh || exit

EAPI=7

inherit autotools

test-it() {
	tbegin "eaclocal_amflags $1: $2"
	printf "ACLOCAL_AMFLAGS = %b\n" "$2" > Makefile.am
	local flags=$(eaclocal_amflags) exp=${3:-$2}
	[[ "${flags}" == "${exp}" ]]
	if ! tend $? ; then
		printf '### INPUT:\n%s\n' "$2"
		printf '### FILE:\n%s\n' "$(<Makefile.am)"
		printf '### EXPECTED:\n%s\n' "${exp}"
		printf '### ACTUAL:\n%s\n' "${flags}"
	fi
	rm Makefile.am
}

test-it simple "-Im4"
test-it simple "-I m4 -I lakdjfladsfj /////"

test-it shell-exec '`echo hi`' "hi"
test-it shell-exec '`echo {0..3}`' "0 1 2 3"

test-it multiline '-I oneline \\\n\t-I twoline' "-I oneline -I twoline"

texit