mirror of https://github.com/ecmwf/eccodes.git
Testing: Dump action tree
This commit is contained in:
parent
0212ba471a
commit
02694d6828
|
@ -44,6 +44,7 @@ list(APPEND test_c_bins
|
||||||
bufr_check_descriptors
|
bufr_check_descriptors
|
||||||
bufr_coordinate_descriptors
|
bufr_coordinate_descriptors
|
||||||
codes_new_from_samples
|
codes_new_from_samples
|
||||||
|
codes_dump_action_tree
|
||||||
codes_set_samples_path
|
codes_set_samples_path
|
||||||
codes_compare_keys
|
codes_compare_keys
|
||||||
grib_sh_ieee64
|
grib_sh_ieee64
|
||||||
|
@ -286,6 +287,7 @@ if( HAVE_BUILD_TOOLS )
|
||||||
grib_statistics
|
grib_statistics
|
||||||
read_any
|
read_any
|
||||||
codes_new_from_samples
|
codes_new_from_samples
|
||||||
|
codes_dump_action_tree
|
||||||
codes_set_samples_path
|
codes_set_samples_path
|
||||||
codes_compare_keys
|
codes_compare_keys
|
||||||
grib_dump
|
grib_dump
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
/*
|
||||||
|
* (C) Copyright 2005- 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#undef NDEBUG
|
||||||
|
#include <assert.h>
|
||||||
|
#include "eccodes.h"
|
||||||
|
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
int err = 0;
|
||||||
|
codes_context* c = codes_context_get_default();
|
||||||
|
|
||||||
|
assert(argc == 2);
|
||||||
|
|
||||||
|
char* filename = argv[1];
|
||||||
|
FILE* fp = fopen(filename, "rb");
|
||||||
|
assert(fp);
|
||||||
|
codes_handle* h = codes_handle_new_from_file(c, fp, PRODUCT_ANY, &err);
|
||||||
|
assert(h);
|
||||||
|
assert(!err);
|
||||||
|
|
||||||
|
codes_dump_action_tree(c, stdout);
|
||||||
|
|
||||||
|
codes_handle_delete(h);
|
||||||
|
fclose(fp);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# (C) Copyright 2005- 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.ctest.sh
|
||||||
|
|
||||||
|
input=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
|
||||||
|
$EXEC ${test_dir}/codes_dump_action_tree "$input"
|
Loading…
Reference in New Issue