mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-26 17:02:21 +00:00
69dd828919
prefix each test output so its easier to see what is tested
12 lines
238 B
Bash
12 lines
238 B
Bash
setup() {
|
|
export FUNCS=../functions.sh
|
|
}
|
|
|
|
@test "functions: check if CBUILD is set" {
|
|
. $FUNCS && test -n "$CBUILD"
|
|
}
|
|
|
|
@test "functions: check that missing gcc does not kill us" {
|
|
sh -e -c "CC=false; . $FUNCS && test -z \"$CBUILD\""
|
|
}
|