Skip to content

Commit

Permalink
Use ENKF_MODE to decide which enkf case to use for regression test su…
Browse files Browse the repository at this point in the history
…ite.
  • Loading branch information
hu5970 committed Jun 24, 2024
1 parent d7c3c82 commit d41c025
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions regression/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,15 @@ list(APPEND GSI_REG_TEST_NAMES
)

# EnKF regression test names
list(APPEND ENKF_REG_TEST_NAMES
global_enkf rrfs_enkf_conv
)
if(ENKF_MODE MATCHES "^(FV3REG)$")
list(APPEND ENKF_REG_TEST_NAMES
rrfs_enkf_conv
)
else()
list(APPEND ENKF_REG_TEST_NAMES
global_enkf
)
endif()

# Add GSI regression tests to list of tests
if(GSICONTROLEXEC)
Expand Down

0 comments on commit d41c025

Please sign in to comment.