Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions regtests/bin/matrix_cmake_ncep
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,11 @@ main_dir="`cd $main_dir 1>/dev/null 2>&1 && pwd`"
# Compile option
if [ "$cmplOption" = 'y' ]
then
opt="-c $cmplr -S -T"
opt="-o all -c $cmplr -S -T"
Comment thread
aliabdolali marked this conversation as resolved.
else
opt="-S"
opt="-o all -S"
fi

# Batch queue option
if [ "$batchq" = 'slurm' ]
then
Expand Down
2 changes: 1 addition & 1 deletion regtests/bin/run_cmake_test
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ then
if [[ "$outopt" = "all" ]] || [[ "$outopt" = "grib" ]] ;
then
cat $file_c | sed 's/DIST/SHRD/' | sed 's/MPI //' | \
sed 's/OMPG //' | sed 's/NOGRB/NCEP2/' \
sed 's/OMPG //' | sed 's/NOGRB/NCEP2/' | \
sed 's/OMPH //' | sed 's/PDLIB //' | \
sed 's/B4B //' > $path_build/switch
else
Expand Down