Merge branch 'eccodes' of ssh://software.ecmwf.int:7999/grib/grib_api into eccodes

This commit is contained in:
Enrico Fucile 2014-10-28 11:46:24 +00:00
commit b0ad650d4a
3 changed files with 19 additions and 1 deletions

View File

@ -59,6 +59,7 @@ list( APPEND tests
clone
sections_copy
set_pv
check_gaussian_grids
)
foreach( test ${tests} )
ecbuild_add_test( TARGET c_${test}

View File

@ -2,7 +2,8 @@
AM_CFLAGS = @WARN_PEDANTIC@ @WERROR@
TESTS = iterator.sh get.sh print_data.sh set.sh keys_iterator.sh multi.sh multi_write.sh \
precision.sh list.sh large_grib1.sh get_data.sh sections_copy.sh set_missing.sh clone.sh set_pv.sh
precision.sh list.sh large_grib1.sh get_data.sh sections_copy.sh set_missing.sh clone.sh set_pv.sh \
check_gaussian_grids.sh
noinst_PROGRAMS = nearest set_bitmap iterator get print_data set set_missing keys_iterator \
set_data mars_param values_check box multi multi2 multi_write precision \

View File

@ -0,0 +1,16 @@
#!/bin/sh
# Copyright 2005-2014 ECMWF.
#
# 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.
. ./include.sh
# Check all sample GRIBs with a Gaussian grid
samples_dir=${proj_dir}/samples
for gg in ${samples_dir}/reduced_gg_* ${samples_dir}/regular_gg_*; do
${examples_dir}check_gaussian_grid $gg >/dev/null
done