Skip tests by returning 77
automake test runner understands this.
This commit is contained in:
parent
54eb65538d
commit
4538efacca
@ -11,7 +11,7 @@ if which nm 2>/dev/null >/dev/null; then
|
||||
:
|
||||
else
|
||||
echo "check-internal-symbols.sh: 'nm' not found; skipping test"
|
||||
exit 0
|
||||
exit 77
|
||||
fi
|
||||
|
||||
so=.libs/libharfbuzz.so
|
||||
@ -23,6 +23,7 @@ if test -f "$so"; then
|
||||
fi
|
||||
else
|
||||
echo "check-internal-symbols.sh: libharfbuzz.so not found; skipping test"
|
||||
exit 77
|
||||
fi
|
||||
|
||||
exit $stat
|
||||
|
@ -11,7 +11,7 @@ if which ldd 2>/dev/null >/dev/null; then
|
||||
:
|
||||
else
|
||||
echo "check-libstdc++.sh: 'ldd' not found; skipping test"
|
||||
exit 0
|
||||
exit 77
|
||||
fi
|
||||
|
||||
so=.libs/libharfbuzz.so
|
||||
@ -23,6 +23,7 @@ if test -f "$so"; then
|
||||
fi
|
||||
else
|
||||
echo "check-libstdc++.sh: libharfbuzz.so not found; skipping test"
|
||||
exit 77
|
||||
fi
|
||||
|
||||
exit $stat
|
||||
|
Loading…
Reference in New Issue
Block a user