mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-11 16:40:36 +08:00
52 lines
1.5 KiB
Bash
Executable File
52 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
. ../test_common.sh
|
|
|
|
set -x
|
|
|
|
#CMD="valgrind --leak-check=full"
|
|
CMD="gdb -batch -ex r -ex bt -ex q --args"
|
|
|
|
URL="https://s3.us-east-1.amazonaws.com/unidata-zarr-test-data"
|
|
|
|
isolate "testdir_uts3sdk"
|
|
|
|
# Create an isolation path for S3; build on the isolation directory
|
|
S3ISODIR="$ISODIR"
|
|
S3ISOPATH="/netcdf-c"
|
|
S3ISOPATH="${S3ISOPATH}/$S3ISODIR"
|
|
|
|
test_cleanup() {
|
|
${CMD} ${execdir}/../nczarr_test/.libs/s3util -u "${URL}" -k "${S3ISOPATH}" clear
|
|
}
|
|
if test "x$GITHUB_ACTIONS" != xtrue; then
|
|
echo trap test_cleanup EXIT
|
|
fi
|
|
|
|
THISDIR=`pwd`
|
|
cd $ISOPATH
|
|
|
|
if test -e ~/.aws/config ; then wc ~/.aws/config; fi
|
|
if test -e ~/.aws/credentials ; then wc ~/.aws/credentials; fi
|
|
|
|
${CMD} ${execdir}/.libs/test_s3sdk -u "${URL}" exists
|
|
${CMD} ${execdir}/.libs/test_s3sdk -u "${URL}" -k "${S3ISOPATH}/.libs/test_s3sdk.txt" write
|
|
${CMD} ${execdir}/.libs/test_s3sdk -u "${URL}" -k "${S3ISOPATH}/.libs/test_s3sdk.txt" read
|
|
${CMD} ${execdir}/.libs/test_s3sdk -u "${URL}" -k "${S3ISOPATH}/.libs/test_s3sdk.txt" size
|
|
${CMD} ${execdir}/.libs/test_s3sdk -u "${URL}" -k "${S3ISOPATH}" list
|
|
${CMD} ${execdir}/.libs/test_s3sdk -u "${URL}" -k "${S3ISOPATH}" search
|
|
${CMD} ${execdir}/.libs/test_s3sdk -u "${URL}" -k "${S3ISOPATH}/.libs/test_s3sdk.txt" delete
|
|
if test "x$FEATURE_LARGE_TESTS" = xyes ; then
|
|
${CMD} ${execdir}/.libs/test_s3sdk -u "${URL}" -k "${S3ISOPATH}" longlist
|
|
fi
|
|
|
|
exit
|
|
if test "x$GITHUB_ACTIONS" = xtrue; then
|
|
# Cleanup on exit
|
|
echo test_cleanup
|
|
fi
|
|
|
|
exit
|
|
|