aboutsummaryrefslogtreecommitdiffstats
path: root/test/tests/filter-directory-filtered-tags-wlrx.success
blob: f01c51d52bc3eebef92c1846ef26327b25122687 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

. "$(cd -- "$(dirname -- "${0}")" && pwd -P)/../bootstrap"

initializeRepositories

"${BIN_MAIN}" --workdir "${DIR_TEMP}" --branch-whitelist 'master' --tag-whitelist 'rx:tag-[0-9]+' -- "${DIR_SOURCE}" '--prune-empty --subdirectory-filter subdir' "${DIR_DESTINATION}"

echo 'Fetching tags'
actualTags="$(getTagList "${DIR_DESTINATION}")"
expectedTags='tag-02'
if test "${actualTags}" != "${expectedTags}"
then
	printf 'Expected tags: %s\nResulting tags with rx whitelist: %s\n' "${expectedTags}" "${actualTags}">&2
	exit 1
fi

© 2014-2024 Faster IT GmbH | imprint | privacy policy