You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A single RT can be run using ./rt.sh -n [test name] command but when same command is used for the restart tests, it does not run the dependency test (the control). This causes failure in the regression test since the restart files are not available. As a workaround, i am creating a custom rt.conf file that includes only subset of the RTs such as cpld_control_c96_p8 and cpld_restart_c96_p8 to run only those tests.
Following information can be used to see the issue:
checkout UFS weather model git clone --recursive https://github.com/ufs-community/ufs-weather-model.git
goto test directory cd ufs-weather-model/tests
try run coupled restart test using ./rt.sh -n cpld_restart_c96_p8
the test will fail due to missing restart files
Solution
The issue can be solved by extending rt.sh script by providing multiple entry to -n option like ./rt.sh -n cpld_control_c96_p8,cpld_restart_c96_p8
Alternatives
The rt_single function in ./rt.sh can be modified to check the RT for dependency and include the dependency test to the rt.conf.single file.
The text was updated successfully, but these errors were encountered:
Description
A single RT can be run using
./rt.sh -n [test name]
command but when same command is used for the restart tests, it does not run the dependency test (the control). This causes failure in the regression test since the restart files are not available. As a workaround, i am creating a custom rt.conf file that includes only subset of the RTs such as cpld_control_c96_p8 and cpld_restart_c96_p8 to run only those tests.Following information can be used to see the issue:
git clone --recursive https://github.com/ufs-community/ufs-weather-model.git
cd ufs-weather-model/tests
./rt.sh -n cpld_restart_c96_p8
Solution
The issue can be solved by extending
rt.sh
script by providing multiple entry to-n
option like./rt.sh -n cpld_control_c96_p8,cpld_restart_c96_p8
Alternatives
The
rt_single
function in./rt.sh
can be modified to check the RT for dependency and include the dependency test to thert.conf.single
file.The text was updated successfully, but these errors were encountered: