You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
2 years ago
|
#! /usr/bin/env bash
|
||
|
# Copyright(C) 1999-2021 National Technology & Engineering Solutions
|
||
|
# of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
|
||
|
# NTESS, the U.S. Government retains certain rights in this software.
|
||
|
#
|
||
|
# See packages/seacas/LICENSE for details
|
||
|
|
||
|
# script to run all tests and compare them to saved dump files.
|
||
|
#
|
||
|
# To run the tests with valgrind checking, uncomment the next line and comment the
|
||
|
# following line. Can also define other prefixes if wanted.
|
||
|
|
||
|
#set PREFIX = "valgrind --tool=memcheck"
|
||
|
PREFIX=""
|
||
|
SUFFIX=""
|
||
|
BINDIR=@CMAKE_CURRENT_BINARY_DIR@
|
||
|
SRCDIR=@CMAKE_CURRENT_SOURCE_DIR@
|
||
|
NCDUMP=@NETCDF_NCDUMP@
|
||
|
DIFF="diff -w"
|
||
|
|
||
|
ret_status=0
|
||
|
rm -f test.output
|
||
|
echo "testwt-compress - verify can create compressed netcdf-4 files..."
|
||
|
echo "begin testwt-compress" >> test.output
|
||
|
${PREFIX} ${BINDIR}/testwt-compress${SUFFIX} >> test.output
|
||
|
ret_status=$((ret_status+$?))
|
||
|
${NCDUMP} -h -s test-compress.exo | grep Deflate | ${DIFF} - ${SRCDIR}/test-compress.dmp | tee test-compress.res
|
||
|
ret_status=$((ret_status+${PIPESTATUS[0]}+${PIPESTATUS[2]}))
|
||
|
echo "end testwt-compress, status = $ret_status" >> test.output
|
||
|
exit $ret_status
|