Skip to content

Commit 2d35e82

Browse files
committed
[regression] Forwarding case arguments
1 parent e55f6ac commit 2d35e82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mfc.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ if [ "$1" == "load" ]; then
7777
if [ "$u_cg" == "c" ]; then
7878
MODULES=("gcc/12.1.0")
7979
elif [ "$u_cg" == "g" ]; then
80-
MODULES=("nvhpc/22.5" "cuda/nvhpc")
80+
MODULES=("nvhpc/22.11" "cuda/nvhpc")
8181
fi
8282

8383
MODULES=("${MODULES[@]}" "python/3.8.10" "darshan-runtime/3.3.1-lite"
8484
"hsi/5.0.2.p5" "xalt/1.2.1" "lsf-tools/2.0"
85-
"cmake/3.23.1" "ninja/1.10.2" "spectrum-mpi/10.4.0.3-20210112")
85+
"cmake/3.23.2" "ninja/1.10.2" "spectrum-mpi/10.4.0.3-20210112")
8686
elif [ "$u_computer" == "b" ]; then # Bridges2
8787
if [ "$u_cg" == "c" ]; then
8888
MODULES=("allocations/1.0" "gcc/10.2.0" "python/3.8.6"

toolchain/mfc/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def get_py_program_output(filepath: str, arguments: typing.List[str] = None):
123123
dirpath = os.path.abspath (os.path.dirname(filepath))
124124
filename = os.path.basename(filepath)
125125

126-
return get_program_output(["python3", filename], cwd=dirpath)
126+
return get_program_output(["python3", filename] + arguments, cwd=dirpath)
127127

128128

129129
def isspace(s: str) -> bool:

0 commit comments

Comments
 (0)