Skip to content

Commit 71a5425

Browse files
authored
Merge pull request #3753 from GEOS-ESM/feature/bmauer/fixes-#3752
2 parents 944e5fd + a30edf7 commit 71a5425

File tree

13 files changed

+116
-8
lines changed

13 files changed

+116
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717

1818
### Deprecated
1919

20+
## [2.56.1] - 2025-05-30
21+
22+
### Fixed
23+
24+
- Fixed issue so that if ExtData cannot find a file and fail on missing is false, just set collection to /dev/null
25+
2026
## [2.56.0] - 2025-05-23
2127

2228
### Fixed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ endif ()
88

99
project (
1010
MAPL
11-
VERSION 2.56.0
11+
VERSION 2.56.1
1212
LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF
1313

1414
# Set the possible values of build type for cmake-gui
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
NX: 1
2+
NY: 1
3+
4+
Root.GRID_TYPE: LatLon
5+
Root.GRIDNAME: DC90x45-PC
6+
Root.LM: 3
7+
Root.IM_WORLD: 90
8+
Root.JM_WORLD: 45
9+
Root.POLE: 'PC'
10+
Root.DATELINE: 'DC'
11+
12+
RUN_MODE: CompareImports
13+
14+
IMPORT_STATE::
15+
VAR2D , time , days , xy , c
16+
::
17+
18+
EXPORT_STATE::
19+
VAR2D , time , days , xy , c
20+
::
21+
22+
FILL_DEF::
23+
VAR2D 1.0e15
24+
::
25+
26+
REF_TIME: 20040701 000000
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CASES::
2+
CAP1.rc
3+
::
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
ROOT_NAME: Root
2+
ROOT_CF: AGCM1.rc
3+
HIST_CF: HISTORY1.rc
4+
5+
BEG_DATE: 20040101 210000
6+
7+
JOB_SGMT: 00001200 000000
8+
HEARTBEAT_DT: 3600
9+
10+
#RUN_EXTDATA: .false.
11+
RUN_TIMES::
12+
20040115 210000
13+
20040215 210000
14+
20040315 210000
15+
20040415 210000
16+
20040515 210000
17+
20040615 210000
18+
20040715 210000
19+
20040815 210000
20+
20040915 210000
21+
20041015 210000
22+
20041115 210000
23+
20041215 210000
24+
::
25+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#CASE_SENSITIVE_VARIABLE_NAMES: .false.
2+
Ext_AllowExtrap: .false.
3+
Prefetch: .true.
4+
#DEBUG_LEVEL: 20
5+
6+
PrimaryExports%%
7+
VAR2D NA N N 0 none none VAR2D case1.%y4.nc4
8+
VAR3D NA N N 0 none none VAR3D case1.%y4.nc4
9+
%%
10+
11+
12+
DerivedExports%%
13+
%%
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
GRID_LABELS:
2+
::
3+
4+
COLLECTIONS:
5+
::
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Test case with no files and using exact and fail on missing
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Collections:
2+
fstream1: {template: case1.%y4.nc4}
3+
Exports:
4+
VAR2D: {variable: VAR2D, collection: fstream1, fail_on_missing_file: false, sample: {exact: true}}

Tests/ExtData_Testing_Framework/test_cases/extdata_2g_cases.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ case34
3535
case35
3636
case36
3737
case37
38+
case38

0 commit comments

Comments
 (0)