mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-21 14:40:09 +00:00
14 lines
243 B
Plaintext
Executable File
14 lines
243 B
Plaintext
Executable File
#!/usr/bin/env atf-sh
|
|
|
|
. $(atf_get_srcdir)/test_env.sh
|
|
init_tests \
|
|
apkgrel_usage
|
|
|
|
export ABUILD_SHAREDIR=$(atf_get_srcdir)/..
|
|
|
|
apkgrel_usage_body() {
|
|
atf_check -o match:"usage" apkgrel -h
|
|
atf_check -s exit:2 -e match:"usage" apkgrel -Z
|
|
}
|
|
|