Skip to content
Snippets Groups Projects
Commit 4468ae04 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Add env. CDI_Test

parent a6b9299b
No related branches found
No related tags found
2 merge requests!42Develop,!39M214003/develop
......@@ -40,6 +40,7 @@ int CDI_Read_Cell_Corners = 1;
int CDI_CMOR_Mode = 0;
int CDI_Reduce_Dim = 0;
int CDI_Shuffle = 0;
int CDI_Test = 0;
size_t CDI_Netcdf_Hdr_Pad = 0UL;
size_t CDI_Chunk_Cache = 0UL;
size_t CDI_Chunk_Cache_Max = 0UL;
......@@ -366,6 +367,9 @@ cdiInitialize(void)
value = cdi_getenv_int("CDI_CHUNK_CACHE_MAX");
if (value >= 0) CDI_Chunk_Cache_Max = (size_t) value;
value = cdi_getenv_int("CDI_TEST");
if (value >= 0) CDI_Test = (size_t) value;
envstr = getenv("CDI_GRIB1_TEMPLATE");
if (envstr) CDI_GRIB1_Template = envstr;
......
......@@ -375,6 +375,7 @@ extern int CDI_Default_Calendar;
// extern int cdiNcMissingValue;
extern int CDI_Netcdf_Chunksizehint;
extern int CDI_ChunkType;
extern int CDI_Test;
extern int CDI_Split_Ltype105;
extern int cdiDataUnreduced;
extern int cdiSortName;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment