mirror of https://github.com/ecmwf/eccodes.git
Testing: Increase coverage
This commit is contained in:
parent
64f9c026bf
commit
b3c7271db5
|
@ -357,14 +357,14 @@ static void test_grid_complex_spatial_differencing(int remove_local_def, int edi
|
|||
}
|
||||
#endif
|
||||
|
||||
static void usage(const char* prog)
|
||||
{
|
||||
fprintf(stderr, "%s: [-p packingType] [-r] [-e edition] in.grib out.grib\n", prog);
|
||||
fprintf(stderr, "-p packingType: one of grid_jpeg, grid_ccsds, grid_second_order or grid_simple\n");
|
||||
fprintf(stderr, "-r remove local definition\n");
|
||||
fprintf(stderr, "-e edition: 1 or 2\n");
|
||||
exit(1);
|
||||
}
|
||||
// static void usage(const char* prog)
|
||||
// {
|
||||
// fprintf(stderr, "%s: [-p packingType] [-r] [-e edition] in.grib out.grib\n", prog);
|
||||
// fprintf(stderr, "-p packingType: one of grid_jpeg, grid_ccsds, grid_second_order or grid_simple\n");
|
||||
// fprintf(stderr, "-r remove local definition\n");
|
||||
// fprintf(stderr, "-e edition: 1 or 2\n");
|
||||
// exit(1);
|
||||
// }
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
|
@ -375,7 +375,7 @@ int main(int argc, char* argv[])
|
|||
char* infile_name = NULL;
|
||||
char* outfile_name = NULL;
|
||||
|
||||
if (argc == 1 || argc > 8) usage(prog);
|
||||
if (argc == 1 || argc > 8) return 1;// see usage
|
||||
|
||||
for (i = 1; i < argc; i++) {
|
||||
if (strcmp(argv[i], "-p") == 0) {
|
||||
|
|
|
@ -224,7 +224,7 @@ static void test_assertion_catching()
|
|||
printf("Running %s ...\n", __func__);
|
||||
|
||||
char empty[] = "";
|
||||
char** list = 0;
|
||||
char** list = NULL;
|
||||
int i = 0;
|
||||
Assert(assertion_caught == 0);
|
||||
codes_set_codes_assertion_failed_proc(&my_assertion_proc);
|
||||
|
@ -233,13 +233,14 @@ static void test_assertion_catching()
|
|||
list = string_split(empty, " ");
|
||||
|
||||
Assert(assertion_caught == 1);
|
||||
Assert( list == NULL );
|
||||
|
||||
/* Restore everything */
|
||||
codes_set_codes_assertion_failed_proc(NULL);
|
||||
assertion_caught = 0;
|
||||
|
||||
for (i = 0; list[i] != NULL; ++i)
|
||||
free(list[i]);
|
||||
// for (i = 0; list[i] != NULL; ++i)
|
||||
// free(list[i]);
|
||||
free(list);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue