Skip to content

Commit

Permalink
Add qsub flag needed for older test system to run correctly on Cheyenne.
Browse files Browse the repository at this point in the history
  • Loading branch information
nusbaume committed Nov 27, 2023
1 parent 01c4c2b commit d3cd749
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/system/test_driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ if [ -n "${submit_script_cb}" ]; then
case $hostname in
# cheyenne
chey* | r* )
batch_queue_submit='qsub '
batch_queue_submit='qsub -V'
;;
*)
echo "ERROR: machine $hostname not currently supported for batch builds"
Expand Down Expand Up @@ -1082,7 +1082,7 @@ if [ "${cesm_test_suite}" != "none" -a -n "${cesm_test_mach}" ]; then
echo "cd ${script_dir}" >> ${submit_script_cime}
echo './create_test' ${testargs} >> ${submit_script_cime}
chmod u+x ${submit_script_cime}
qsub ${submit_script_cime}
qsub -V ${submit_script_cime}
fi

if [ "${hostname:0:6}" == "hobart" ]; then
Expand Down Expand Up @@ -1116,7 +1116,7 @@ if $run_cam_regression; then
case $hostname in
##cheyenne
ch* | r* )
qsub ${submit_script_cb}
qsub -V ${submit_script_cb}
;;

##hobart
Expand Down

0 comments on commit d3cd749

Please sign in to comment.