blob: d561b92d03352c1518dedaf1a8f057034e7015d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
# Do the Solaris Dance:
if [ ! -d ~root ] ; then
exec /usr/xpg4/bin/sh $0 "$@"
fi
set -e
. ${srcdir}/common
ARGS="--cflags simple"
RESULT=""
run_test
|