-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0dfc43
commit d99c7f9
Showing
3 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
# WCDA test similar to what is tested in the gw-ci | ||
set(pslot wcda-gwci) | ||
# Setup the environement | ||
set(HOMEgfs ${CMAKE_SOURCE_DIR}/../../..) | ||
set(RUNTESTS ${CMAKE_CURRENT_BINARY_DIR}/../../test/gw-ci) | ||
set(YAML ${HOMEgfs}/ci/cases/pr/C48mx500_3DVarAOWCDA.yaml) | ||
|
||
add_test(NAME wcda_ci | ||
COMMAND /bin/bash -c "${PROJECT_SOURCE_DIR}/test/gw-ci/create_exp.sh ${YAML} ${pslot} ${HOMEgfs} ${RUNTESTS}" | ||
WORKING_DIRECTORY ${RUNTESTS}) | ||
# List of g-w ci test to create | ||
set(cycling_tests "C48mx500_3DVarAOWCDA" "C96_atmaerosnowDA" "C96C48_ufs_hybatmDA") | ||
|
||
# Prepare the cycling ctests | ||
foreach(pslot ${cycling_tests}) | ||
set(YAML ${HOMEgfs}/ci/cases/pr/${pslot}.yaml) | ||
add_test(NAME ${pslot} | ||
COMMAND /bin/bash -c "${PROJECT_SOURCE_DIR}/test/gw-ci/create_exp.sh ${YAML} ${pslot} ${HOMEgfs} ${RUNTESTS}" | ||
WORKING_DIRECTORY ${RUNTESTS}) | ||
set_tests_properties(${pslot} PROPERTIES LABELS "manual") | ||
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters