2017-07-14 14:31:43 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2017-07-14 14:31:43 +00:00
|
|
|
#
|
|
|
|
# This software is licensed under the terms of the Apache Licence Version 2.0
|
|
|
|
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
#
|
|
|
|
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
|
|
|
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
|
|
|
#
|
|
|
|
|
2022-04-03 22:02:48 +00:00
|
|
|
. ./include.ctest.sh
|
2017-07-14 14:31:43 +00:00
|
|
|
|
2022-02-01 12:14:30 +00:00
|
|
|
|
|
|
|
# Note: grib_ieee64_to_long/grib_long_to_ieee64 function needs the system
|
|
|
|
# sizeof(long) == sizeof(double).
|
|
|
|
# So on Windows and 32bit Linux, this test is disabled.
|
|
|
|
|
|
|
|
|
2019-12-30 16:41:13 +00:00
|
|
|
if [ $ECCODES_ON_WINDOWS -eq 1 ]; then
|
|
|
|
echo "$0: This test is currently disabled on Windows"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2020-02-13 12:38:21 +00:00
|
|
|
$EXEC $test_dir/grib_sh_ieee64
|