-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
62 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
step 1 | ||
lua ProjectDIR/src/lmod.in.lua shell --regression_testing --version | ||
=========================== | ||
Modules based on Lua: Version 8.6.12 2022-02-09 16:10 -06:00 | ||
Modules based on Lua: Version 8.7.31 2023-08-09 12:41 -05:00 | ||
by Robert McLay [email protected] | ||
=========================== | ||
step 2 | ||
|
@@ -27,7 +27,7 @@ ProjectDIR/rt/extensions/mf/Compiler/gcc/9 | |
python/3.7 (L) | ||
ProjectDIR/rt/extensions/mf/Core | ||
TACC gcc/9.4 (L) intel/19.1 | ||
This is a list of module extensions "module --nx avail ..." to not show. | ||
This is a list of module extensions. Use "module --nx avail ..." to not show extensions. | ||
CC (E) a (E) b (E) | ||
These extensions cannot be loaded directly, use "module spider extension_name" for more information. | ||
Where: | ||
|
@@ -46,7 +46,7 @@ ProjectDIR/rt/extensions/mf/Compiler/gcc/9 | |
python/3.7 (L) snake/3.9 (H) | ||
ProjectDIR/rt/extensions/mf/Core | ||
TACC gcc/9.4 (L) intel/19.1 | ||
This is a list of module extensions "module --nx avail ..." to not show. | ||
This is a list of module extensions. Use "module --nx avail ..." to not show extensions. | ||
CC (E) a (E) b (E) d (E) | ||
These extensions cannot be loaded directly, use "module spider extension_name" for more information. | ||
Where: | ||
|
@@ -73,7 +73,7 @@ ProjectDIR/rt/extensions/mf/Compiler/intel/19 | |
python/3.7 (L) | ||
ProjectDIR/rt/extensions/mf/Core | ||
TACC gcc/9.4 intel/19.1 (L) | ||
This is a list of module extensions "module --nx avail ..." to not show. | ||
This is a list of module extensions. Use "module --nx avail ..." to not show extensions. | ||
CC (E) DDD (E) | ||
These extensions cannot be loaded directly, use "module spider extension_name" for more information. | ||
Where: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,13 @@ | |
step 1 | ||
lua ProjectDIR/src/lmod.in.lua shell --regression_testing --version | ||
=========================== | ||
Modules based on Lua: Version 8.6.9 2022-02-02 11:25 -04:00 | ||
Modules based on Lua: Version 8.7.31 2023-08-09 12:41 -05:00 | ||
by Robert McLay [email protected] | ||
=========================== | ||
step 2 | ||
buildSh2MF --from zsh ProjectDIR/rt/zsh_to_modulefile/tstScript.zsh | ||
=========================== | ||
=========================== | ||
step 3 | ||
lua ProjectDIR/src/lmod.in.lua shell --regression_testing load matt/1.0 | ||
=========================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
source_sh("zsh", pathJoin(os.getenv("testDir"), "rtm.sh")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
_sp_multi_pathadd() { | ||
local IFS=':' | ||
if [ "$_sp_shell" = zsh ]; then | ||
emulate -L sh | ||
fi | ||
for pth in $2; do | ||
for systype in ${_sp_compatible_sys_types}; do | ||
_spack_pathadd "$1" "${pth}/${systype}" | ||
done | ||
done | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters