Skip to content

Commit

Permalink
SD-103535: Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
shahramn committed Dec 18, 2024
1 parent 6f59e10 commit 3589b8c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tests/unit_tests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ static void test_assertion_catching()
list = string_split(empty, " ");

Assert(assertion_caught == 1);
Assert( list == NULL );
Assert(list == NULL);

/* Restore everything */
codes_set_codes_assertion_failed_proc(NULL);
Expand Down Expand Up @@ -858,15 +858,17 @@ static void test_grib_get_binary_scale_fact()
{
printf("Running %s ...\n", __func__);
int err = 0;
long result = 0;
long result = grib_get_binary_scale_fact(INFINITY, 0, 0, &err);
Assert(err == GRIB_OUT_OF_RANGE);
Assert(result == 0);

result = grib_get_binary_scale_fact(100, 0, 65, &err); // bpv too big
Assert( err == GRIB_OUT_OF_RANGE);
Assert( result == 0 );
Assert(err == GRIB_OUT_OF_RANGE);
Assert(result == 0);

result = grib_get_binary_scale_fact(100, 0, 0, &err); // bpv 0
Assert( err == GRIB_ENCODING_ERROR);
Assert( result == 0 );
Assert(err == GRIB_ENCODING_ERROR);
Assert(result == 0);
}

static void test_filepool()
Expand Down

0 comments on commit 3589b8c

Please sign in to comment.