2010-06-03 21:24:43 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-05-17 05:46:39 +08:00
|
|
|
set -e
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
# if this is part of a distcheck action, then this script
|
|
|
|
# will be executed in a different directory
|
|
|
|
# than the one containing it; so capture the path to this script
|
|
|
|
# as the location of the source directory.
|
2017-01-19 12:46:47 +08:00
|
|
|
|
|
|
|
if test "x$topsrcdir" != x ; then
|
|
|
|
srcdir="$topsrcdir/ncdap_test"
|
|
|
|
else
|
|
|
|
srcdir=`dirname $0`
|
|
|
|
fi
|
|
|
|
|
2012-06-07 05:57:29 +08:00
|
|
|
cd $srcdir
|
|
|
|
srcdir=`pwd`
|
2010-06-03 21:24:43 +08:00
|
|
|
# compute the build directory
|
|
|
|
# Do a hack to remove e.g. c: for CYGWIN
|
|
|
|
builddir=`pwd`/..
|
|
|
|
# Hack for CYGWIN
|
2012-07-18 04:13:17 +08:00
|
|
|
if [ `uname | cut -d "_" -f 1` = "MINGW32" ]; then
|
2012-06-07 05:57:29 +08:00
|
|
|
srcdir=`pwd | sed 's/\/c\//c:\//g'`
|
|
|
|
builddir="$srcdir"/..
|
|
|
|
fi
|
2010-06-03 21:24:43 +08:00
|
|
|
cd ${builddir}/ncdap_test
|
|
|
|
|
|
|
|
sh ${srcdir}/tst_remote.sh "$srcdir" "$builddir" "3" "nocache" ""
|
|
|
|
exit
|