Skip to content

Commit 86e8e3d

Browse files
committed
fix the testsuite for '--enable-quarantine-support' and '--disable-ml' configuration
1 parent 217f541 commit 86e8e3d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tcl/envmngt.tcl.in

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,14 +1192,15 @@ end}
11921192
foreach(_mlv ${_mlv_list})
11931193
if(${_mlv} MATCHES "^[A-Za-z_][A-Za-z0-9_]*$")
11941194
if(DEFINED ENV{${_mlv}})
1195-
set(_mlre "${_mlre}__MODULES_QUAR_${_mlv}=$ENV{${_mlv}};")
1195+
string(APPEND _mlre " [===[__MODULES_QUAR_${_mlv}=$ENV{${_mlv}}]===]")
11961196
endif()
11971197
set(_mlrv "MODULES_RUNENV_${_mlv}")
1198-
set(_mlre "${_mlre}${_mlv}=$ENV{${_mlrv}};")
1198+
string(APPEND _mlre " [===[${_mlv}=$ENV{${_mlrv}}]===]")
11991199
endif()
12001200
endforeach()
12011201
if (NOT "${_mlre}" STREQUAL "")
1202-
set(_mlre "env;${_mlre}__MODULES_QUARANTINE_SET=1;")
1202+
string(PREPEND _mlre " [===[env]===]")
1203+
string(APPEND _mlre " [===[__MODULES_QUARANTINE_SET=1]===]")
12031204
endif()
12041205
endif()}
12051206
}

0 commit comments

Comments
 (0)