<p><b>dwj07@fsu.edu</b> 2012-04-25 13:32:29 -0600 (Wed, 25 Apr 2012)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Making submit scripts use the user's default shell.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/ocean_projects/ocean_test_cases_staging/ocean/hopper_submit_template.sh
===================================================================
--- branches/ocean_projects/ocean_test_cases_staging/ocean/hopper_submit_template.sh        2012-04-25 18:06:32 UTC (rev 1813)
+++ branches/ocean_projects/ocean_test_cases_staging/ocean/hopper_submit_template.sh        2012-04-25 19:32:29 UTC (rev 1814)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!shell
 #PBS -N run_name
 #PBS -q regular 
 #PBS -l walltime=alloted_run_time

Modified: branches/ocean_projects/ocean_test_cases_staging/ocean/lobo_submit_template.sh
===================================================================
--- branches/ocean_projects/ocean_test_cases_staging/ocean/lobo_submit_template.sh        2012-04-25 18:06:32 UTC (rev 1813)
+++ branches/ocean_projects/ocean_test_cases_staging/ocean/lobo_submit_template.sh        2012-04-25 19:32:29 UTC (rev 1814)
@@ -1,4 +1,4 @@
-#! /bin/bash
+#!shell
 #MSUB -N run_name
 #MSUB -l walltime=alloted_run_time
 #MSUB -l nodes=num_nodes:ppn=procs_per_node

Modified: branches/ocean_projects/ocean_test_cases_staging/ocean/mustang_submit_template.sh
===================================================================
--- branches/ocean_projects/ocean_test_cases_staging/ocean/mustang_submit_template.sh        2012-04-25 18:06:32 UTC (rev 1813)
+++ branches/ocean_projects/ocean_test_cases_staging/ocean/mustang_submit_template.sh        2012-04-25 19:32:29 UTC (rev 1814)
@@ -1,4 +1,4 @@
-#! /bin/bash
+#!shell
 #MSUB -N run_name
 #MSUB -l walltime=alloted_run_time
 #MSUB -l nodes=num_nodes:ppn=procs_per_node

Modified: branches/ocean_projects/ocean_test_cases_staging/ocean/oceanTestCases.sh
===================================================================
--- branches/ocean_projects/ocean_test_cases_staging/ocean/oceanTestCases.sh        2012-04-25 18:06:32 UTC (rev 1813)
+++ branches/ocean_projects/ocean_test_cases_staging/ocean/oceanTestCases.sh        2012-04-25 19:32:29 UTC (rev 1814)
@@ -13,7 +13,7 @@
 # REPOSITORY_ADDRESS=&quot;https://svn-mpas-model.cgd.ucar.edu/trunk/mpas --username user --password pass&quot;
 
 REPOSITORY_ADDRESS=&quot;https://svn-mpas-model.cgd.ucar.edu/trunk/mpas&quot;
-#REPOSITORY_ADDRESS=&quot;https://svn-mpas-model.cgd.ucar.edu/branches/ocean_projects/monotonic_advection@1670&quot;
+REPOSITORY_ADDRESS=&quot;https://svn-mpas-model.cgd.ucar.edu/branches/omp_blocks/io&quot;
 COMPILE_SET=&quot;gfortran&quot;
 MACHINE_NAME=&quot;lobo&quot;
 MACHINE_PPN=&quot;16&quot;
@@ -141,9 +141,14 @@
                 fi
 
                 ## Generate submission script
-                cat ${CUR_DIR}/${MACHINE_NAME}_submit_template.sh | sed &quot;s/run_name/${CASE}_${NAME}/g&quot; \
-                        | sed &quot;s/num_nodes/${NODES}/g&quot; | sed &quot;s/procs_per_node/${PPN}/g&quot; | sed &quot;s|working_dir|$RUN|g&quot; \
-                        | sed &quot;s/num_procs/$PROCS/g&quot; | sed &quot;s/alloted_run_time/${ALLOTED_RUN_TIME}/g&quot; &gt; $CASE/submits/$NAME.sh
+                cat ${CUR_DIR}/${MACHINE_NAME}_submit_template.sh \
+                        | sed &quot;s/run_name/${CASE}_${NAME}/g&quot; \
+                        | sed &quot;s/num_nodes/${NODES}/g&quot; \
+                        | sed &quot;s/procs_per_node/${PPN}/g&quot; \
+                        | sed &quot;s|working_dir|$RUN|g&quot; \
+                        | sed &quot;s/num_procs/$PROCS/g&quot; \
+                        | sed &quot;s|shell|${SHELL}|g&quot; \
+                        | sed &quot;s/alloted_run_time/${ALLOTED_RUN_TIME}/g&quot; &gt; $CASE/submits/$NAME.sh
 
                 ## Submit job, and retain job id for later use
                 JOB_ID=`${SUBMISSION_CMD} ${CUR_DIR}/${CASE}/submits/$NAME.sh`

</font>
</pre>