mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
17 lines
322 B
Bash
17 lines
322 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
||
|
. ../test_common.sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
find ${execdir} -name 'test_put_vars_two_unlim_dim*'
|
||
|
|
||
|
if test -f ${execdir}/.libs/test_put_vars_two_unlim_dim${ext} ; then
|
||
|
nm ${execdir}/.libs/test_put_vars_two_unlim_dim${ext}
|
||
|
fi
|
||
|
|
||
|
#${execdir}/test_put_vars_two_unlim_dim${ext}
|
||
|
|
||
|
exit 0
|