Skip to content

Commit

Permalink
reduce number of data points
Browse files Browse the repository at this point in the history
lowering number of values to
NUM_TS_VALUES 1221  so Weekly tests will pass

new issue #255 discovered to be handled later.
  • Loading branch information
ktarbet committed Oct 17, 2024
1 parent b70910e commit 887932a
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions test/Dss-C/source/mixed_record_types.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ int writeSingleTimeSeries(long long* ifltab, const char* path, const char* date,



#define NUM_TS_VALUES 2221
#define NUM_TS_VALUES 1221

/// prints out all paths, returns non-zero if any records are floats (we are expecting doubles)
int check_catalog_for_doubles(long long* ifltab) {
Expand Down Expand Up @@ -233,14 +233,14 @@ int test_mixed_record_types() {
return status;
}

//status = write_ts_mixed(ifltab, "//GAPT_DAM/FLOW-LOCAL//1Week/GAPT_HMS_FORECAST_float_first/", 0);
//if (status != STATUS_OKAY) {
// return status;
//}
//status = write_ts_mixed(ifltab, "//GAPT_DAM/FLOW-LOCAL//1Week/GAPT_HMS_FORECAST_doubles_first/", 1);
//if (status != STATUS_OKAY) {
// return status;
//}
status = write_ts_mixed(ifltab, "//GAPT_DAM/FLOW-LOCAL//1Week/GAPT_HMS_FORECAST_float_first/", 0);
if (status != STATUS_OKAY) {
return status;
}
status = write_ts_mixed(ifltab, "//GAPT_DAM/FLOW-LOCAL//1Week/GAPT_HMS_FORECAST_doubles_first/", 1);
if (status != STATUS_OKAY) {
return status;
}

status = write_ts_mixed(ifltab, "//GAPT_DAM/FLOW-LOCAL//1Month/GAPT_HMS_FORECAST_floats_first/", 0);
if (status != STATUS_OKAY) {
Expand All @@ -266,7 +266,6 @@ int test_mixed_record_types() {


zclose(ifltab);
//return -444;
return status;

}
Expand Down

0 comments on commit 887932a

Please sign in to comment.