Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ccpp-physics #806, #807, #813, and ort modifications #970

Merged
merged 22 commits into from
Dec 21, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
29da6e8
Add skip_check_results to run_test_${TEST_NR}.env file
DusanJovic-NOAA Dec 17, 2021
96c33d1
Use run_compile.sh instead of compile.sh for sequential rt.sh runs
DusanJovic-NOAA Dec 17, 2021
f20741a
RT JOBS PASSED: orion.intel. Log file uploaded.
BrianCurtis-NOAA Dec 17, 2021
be9968d
RT JOBS PASSED: gaea.intel. Log file uploaded.
BrianCurtis-NOAA Dec 17, 2021
04cda19
Add skip_check_results var to ORT. Modify fail_opnreq related codes. …
MinsukJi-NOAA Dec 18, 2021
654688f
Add OPT log files for cpld_bmark_p7, cpld_control_c96_p7, cpld_contro…
MinsukJi-NOAA Dec 18, 2021
3fa10e3
Remove a commented out line
MinsukJi-NOAA Dec 18, 2021
acbcf39
Revert to compile.sh for serial build in opnReqTest
MinsukJi-NOAA Dec 20, 2021
95f1f0f
Merge with ufs develop
MinsukJi-NOAA Dec 20, 2021
eeab974
Point fv3atm to grantfirl/wrapper_806_807_813
MinsukJi-NOAA Dec 20, 2021
4377c5d
Update @grantfirl fv3atm branch
MinsukJi-NOAA Dec 20, 2021
bec2fe5
Define/Move OPNREQ_TEST var in run_compile.sh and run_test.sh
MinsukJi-NOAA Dec 20, 2021
b3d1f51
Change bl_date to 20211221
MinsukJi-NOAA Dec 20, 2021
4beb5f6
RT JOBS PASSED: hera.intel. Log file uploaded.
BrianCurtis-NOAA Dec 20, 2021
4bd8571
RT JOBS PASSED: cheyenne.intel. Log file uploaded.
BrianCurtis-NOAA Dec 20, 2021
953e3b7
RT JOBS PASSED: gaea.intel. Log file uploaded.
BrianCurtis-NOAA Dec 20, 2021
013680b
RT JOBS PASSED: cheyenne.gnu. Log file uploaded.
BrianCurtis-NOAA Dec 20, 2021
1b8fe52
RT JOBS PASSED: orion.intel. Log file uploaded.
BrianCurtis-NOAA Dec 21, 2021
f5e6424
RT JOBS PASSED: jet.intel. Log file uploaded.
BrianCurtis-NOAA Dec 21, 2021
ceed2dc
RT JOBS PASSED: hera.gnu. Log file uploaded.
BrianCurtis-NOAA Dec 21, 2021
26bdcf5
Add WCOSS logs: all tests passed
MinsukJi-NOAA Dec 21, 2021
5b32f3b
Point fv3atm to noaa-emc/develop
MinsukJi-NOAA Dec 21, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Define/Move OPNREQ_TEST var in run_compile.sh and run_test.sh
  • Loading branch information
MinsukJi-NOAA committed Dec 20, 2021
commit bec2fe55940455e1b6795e568a9fb31f0008efcb
1 change: 1 addition & 0 deletions tests/run_compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export MAKE_OPT=$3
export COMPILE_NR=$4

cd ${PATHRT}
OPNREQ_TEST=${OPNREQ_TEST:-false}
if [[ ${OPNREQ_TEST} == true ]]; then
rm -f fail_opnreq_compile_${COMPILE_NR}
else
Expand Down
2 changes: 1 addition & 1 deletion tests/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export TEST_NR=$4
export COMPILE_NR=$5

cd ${PATHRT}
OPNREQ_TEST=${OPNREQ_TEST:-false}
if [[ ${OPNREQ_TEST} == true ]]; then
rm -f fail_opnreq_test_${TEST_NR}
else
Expand All @@ -57,7 +58,6 @@ export JBNME=$(basename $RUNDIR_ROOT)_${TEST_NR}

echo -n "${TEST_NAME}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt

OPNREQ_TEST=${OPNREQ_TEST:-false}
if [[ ${OPNREQ_TEST} == false ]]; then
REGRESSIONTEST_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log
else
Expand Down