mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-26 00:42:22 +00:00
95cd15c025
abuild-sign does not use gcc. fixes #9974
12 lines
216 B
Bash
12 lines
216 B
Bash
setup() {
|
|
export FUNCS=../functions.sh
|
|
}
|
|
|
|
@test "check if CBUILD is set" {
|
|
. $FUNCS && test -n "$CBUILD"
|
|
}
|
|
|
|
@test "check that missing gcc does not kill us" {
|
|
sh -e -c "CC=false; . $FUNCS && test -z \"$CBUILD\""
|
|
}
|