xref: /openbsd-src/regress/libexec/ld.so/link-order/test/test.sh (revision 4cdff47d6cf1bd5a721b23b33cb80183e6c984e2)
1# $OpenBSD: test.sh,v 1.1 2003/07/01 05:51:31 niklas Exp $
2
3msg=`LD_LIBRARY_PATH=lib $1`
4case $2 in
5%ERROR%)
6  test $? -ne 0;;
7*)
8  test X"$msg" = X"$2"
9esac
10exit $?
11