├── .globalrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── COPYING.GPLv2 ├── GOVERNANCE.rst ├── INSTALL-win.rst ├── INSTALL.rst ├── MIGRATING.rst ├── Makefile ├── Makefile.inc.in ├── NEWS.rst ├── README.md ├── SECURITY.md ├── configure ├── doc ├── Makefile ├── demo │ ├── Makefile │ └── sc19 │ │ ├── 01welcome.cast │ │ ├── 02config.cast │ │ ├── 03auto_handling.cast │ │ ├── 04icase.cast │ │ ├── 05extended_default.cast │ │ ├── 06advanced_version_spec.cast │ │ ├── 07thanks.cast │ │ └── script ├── emacs.txt ├── example │ ├── compiler-etc-dependencies │ │ ├── example-sessions │ │ │ ├── bar-defaults.sh │ │ │ ├── bar-loads.sh │ │ │ ├── bar-switch.sh │ │ │ ├── common_code.sh │ │ │ ├── flavours │ │ │ │ ├── modules3 │ │ │ │ │ ├── bar-defaults.out │ │ │ │ │ ├── bar-loads.out │ │ │ │ │ ├── bar-switch.out │ │ │ │ │ ├── foo-avail1.out │ │ │ │ │ ├── foo-avail2.out │ │ │ │ │ ├── foo-defaults.out │ │ │ │ │ ├── foo-loads.out │ │ │ │ │ ├── foo-switch.out │ │ │ │ │ ├── modavail.out │ │ │ │ │ ├── modversion.out │ │ │ │ │ ├── ompi-defaults.out │ │ │ │ │ ├── ompi-loads1.out │ │ │ │ │ └── ompi-switch.out │ │ │ │ └── modules4 │ │ │ │ │ ├── bar-defaults.out │ │ │ │ │ ├── bar-loads.out │ │ │ │ │ ├── bar-switch.out │ │ │ │ │ ├── foo-avail1.out │ │ │ │ │ ├── foo-avail2.out │ │ │ │ │ ├── foo-defaults.out │ │ │ │ │ ├── foo-loads.out │ │ │ │ │ ├── foo-switch.out │ │ │ │ │ ├── modavail.out │ │ │ │ │ ├── modversion.out │ │ │ │ │ ├── ompi-defaults.out │ │ │ │ │ ├── ompi-loads1.out │ │ │ │ │ └── ompi-switch.out │ │ │ ├── foo-avail1.sh │ │ │ ├── foo-avail2.sh │ │ │ ├── foo-defaults.sh │ │ │ ├── foo-loads.sh │ │ │ ├── foo-switch.sh │ │ │ ├── homebrewed │ │ │ │ ├── modules3 │ │ │ │ │ ├── bar-defaults.out │ │ │ │ │ ├── bar-loads.out │ │ │ │ │ ├── bar-switch.out │ │ │ │ │ ├── foo-avail1.out │ │ │ │ │ ├── foo-avail2.out │ │ │ │ │ ├── foo-defaults.out │ │ │ │ │ ├── foo-loads.out │ │ │ │ │ ├── foo-switch.out │ │ │ │ │ ├── modavail.out │ │ │ │ │ ├── modversion.out │ │ │ │ │ ├── ompi-defaults.out │ │ │ │ │ ├── ompi-loads1.out │ │ │ │ │ └── ompi-switch.out │ │ │ │ └── modules4 │ │ │ │ │ ├── bar-defaults.out │ │ │ │ │ ├── bar-loads.out │ │ │ │ │ ├── bar-switch.out │ │ │ │ │ ├── foo-avail1.out │ │ │ │ │ ├── foo-avail2.out │ │ │ │ │ ├── foo-defaults.out │ │ │ │ │ ├── foo-loads.out │ │ │ │ │ ├── foo-switch.out │ │ │ │ │ ├── modavail.out │ │ │ │ │ ├── modversion.out │ │ │ │ │ ├── ompi-defaults.out │ │ │ │ │ ├── ompi-loads1.out │ │ │ │ │ └── ompi-switch.out │ │ │ ├── modavail.sh │ │ │ ├── modulepath │ │ │ │ ├── modules3 │ │ │ │ │ ├── bar-defaults.out │ │ │ │ │ ├── bar-loads.out │ │ │ │ │ ├── bar-switch.out │ │ │ │ │ ├── foo-avail1.out │ │ │ │ │ ├── foo-avail2.out │ │ │ │ │ ├── foo-defaults.out │ │ │ │ │ ├── foo-loads.out │ │ │ │ │ ├── foo-switch.out │ │ │ │ │ ├── modavail.out │ │ │ │ │ ├── modversion.out │ │ │ │ │ ├── ompi-defaults.out │ │ │ │ │ ├── ompi-loads1.out │ │ │ │ │ └── ompi-switch.out │ │ │ │ └── modules4 │ │ │ │ │ ├── bar-defaults.out │ │ │ │ │ ├── bar-loads.out │ │ │ │ │ ├── bar-switch.out │ │ │ │ │ ├── foo-avail1.out │ │ │ │ │ ├── foo-avail2.out │ │ │ │ │ ├── foo-defaults.out │ │ │ │ │ ├── foo-loads.out │ │ │ │ │ ├── foo-switch.out │ │ │ │ │ ├── modavail.out │ │ │ │ │ ├── modversion.out │ │ │ │ │ ├── ompi-defaults.out │ │ │ │ │ ├── ompi-loads1.out │ │ │ │ │ └── ompi-switch.out │ │ │ ├── modulerc │ │ │ │ ├── modules3 │ │ │ │ │ ├── bar-defaults.out │ │ │ │ │ ├── bar-loads.out │ │ │ │ │ ├── bar-switch.out │ │ │ │ │ ├── foo-avail1.out │ │ │ │ │ ├── foo-avail2.out │ │ │ │ │ ├── foo-defaults.out │ │ │ │ │ ├── foo-loads.out │ │ │ │ │ ├── foo-switch.out │ │ │ │ │ ├── modavail.out │ │ │ │ │ ├── modversion.out │ │ │ │ │ ├── ompi-defaults.out │ │ │ │ │ ├── ompi-loads1.out │ │ │ │ │ └── ompi-switch.out │ │ │ │ └── modules4 │ │ │ │ │ ├── bar-defaults.out │ │ │ │ │ ├── bar-loads.out │ │ │ │ │ ├── bar-switch.out │ │ │ │ │ ├── foo-avail1.out │ │ │ │ │ ├── foo-avail2.out │ │ │ │ │ ├── foo-defaults.out │ │ │ │ │ ├── foo-loads.out │ │ │ │ │ ├── foo-switch.out │ │ │ │ │ ├── modavail.out │ │ │ │ │ ├── modversion.out │ │ │ │ │ ├── ompi-defaults.out │ │ │ │ │ ├── ompi-loads1.out │ │ │ │ │ └── ompi-switch.out │ │ │ ├── modversion.sh │ │ │ ├── ompi-defaults.sh │ │ │ ├── ompi-loads1.sh │ │ │ ├── ompi-switch.sh │ │ │ └── ompi-switch.sh.m431 │ │ ├── fake-sw-root │ │ │ ├── bar │ │ │ │ ├── 4.7 │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── gnu-8.2.0-simd-avx │ │ │ │ │ │ └── gnu-8.2.0-simd-sse4.1 │ │ │ │ │ └── gcc │ │ │ │ │ │ └── 8.2.0 │ │ │ │ │ │ ├── avx │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── bar │ │ │ │ │ │ └── sse4.1 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── bar │ │ │ │ └── 5.4 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── gnu-9.1.0-simd-avx │ │ │ │ │ └── gnu-9.1.0-simd-avx2 │ │ │ │ │ └── gcc │ │ │ │ │ └── 9.1.0 │ │ │ │ │ ├── avx │ │ │ │ │ └── bin │ │ │ │ │ │ └── bar │ │ │ │ │ └── avx2 │ │ │ │ │ └── bin │ │ │ │ │ └── bar │ │ │ ├── foo │ │ │ │ ├── 1.1 │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── gnu-8.2.0 │ │ │ │ │ │ ├── gnu-8.2.0-mvapich-2.1 │ │ │ │ │ │ ├── gnu-8.2.0-openmpi-3.1 │ │ │ │ │ │ ├── intel-2018 │ │ │ │ │ │ ├── intel-2018-intelmpi-default │ │ │ │ │ │ ├── intel-2018-mvapich-2.1 │ │ │ │ │ │ ├── intel-2018-openmpi-3.1 │ │ │ │ │ │ ├── pgi-18.4 │ │ │ │ │ │ ├── pgi-18.4-mvapich-2.1 │ │ │ │ │ │ └── pgi-18.4-openmpi-3.1 │ │ │ │ │ ├── gcc │ │ │ │ │ │ └── 8.2.0 │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ ├── intel │ │ │ │ │ │ └── 2018 │ │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ └── pgi │ │ │ │ │ │ └── 18.4 │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── foo │ │ │ │ └── 2.4 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── gnu-9.1.0 │ │ │ │ │ ├── gnu-9.1.0-mvapich-2.3.1 │ │ │ │ │ ├── gnu-9.1.0-openmpi-4.0 │ │ │ │ │ ├── intel-2019 │ │ │ │ │ ├── intel-2019-intelmpi-default │ │ │ │ │ ├── intel-2019-mvapich-2.3.1 │ │ │ │ │ ├── intel-2019-openmpi-4.0 │ │ │ │ │ ├── pgi-19.4 │ │ │ │ │ └── pgi-19.4-openmpi-3.1 │ │ │ │ │ ├── gcc │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── foo │ │ │ │ │ ├── intel │ │ │ │ │ └── 2019 │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── foo │ │ │ │ │ └── pgi │ │ │ │ │ └── 19.4 │ │ │ │ │ ├── nompi │ │ │ │ │ └── bin │ │ │ │ │ │ └── foo │ │ │ │ │ └── openmpi │ │ │ │ │ └── 3.1 │ │ │ │ │ └── bin │ │ │ │ │ └── foo │ │ │ ├── gcc │ │ │ │ ├── 8.2.0 │ │ │ │ │ └── bin │ │ │ │ │ │ └── gcc │ │ │ │ └── 9.1.0 │ │ │ │ │ └── bin │ │ │ │ │ └── gcc │ │ │ ├── intel │ │ │ │ ├── 2018 │ │ │ │ │ └── bin │ │ │ │ │ │ └── icc │ │ │ │ └── 2019 │ │ │ │ │ └── bin │ │ │ │ │ └── icc │ │ │ ├── mvapich │ │ │ │ ├── 2.1 │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── gnu-8.2.0 │ │ │ │ │ │ ├── gnu-9.1.0 │ │ │ │ │ │ ├── intel-2018 │ │ │ │ │ │ ├── intel-2019 │ │ │ │ │ │ ├── pgi-18.4 │ │ │ │ │ │ └── pgi-19.4 │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2018 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ │ └── 2019 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── 18.4 │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ │ └── 19.4 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── mpirun │ │ │ │ └── 2.3.1 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── gnu-9.1.0 │ │ │ │ │ ├── intel-2019 │ │ │ │ │ └── pgi-19.4 │ │ │ │ │ ├── gcc │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── mpirun │ │ │ │ │ ├── intel │ │ │ │ │ └── 2019 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── mpirun │ │ │ │ │ └── pgi │ │ │ │ │ └── 19.4 │ │ │ │ │ └── bin │ │ │ │ │ └── mpirun │ │ │ ├── openmpi │ │ │ │ ├── 3.1 │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── gnu-8.2.0 │ │ │ │ │ │ ├── gnu-9.1.0 │ │ │ │ │ │ ├── intel-2018 │ │ │ │ │ │ ├── intel-2019 │ │ │ │ │ │ ├── pgi-18.4 │ │ │ │ │ │ └── pgi-19.4 │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2018 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ │ └── 2019 │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── 18.4 │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── mpirun │ │ │ │ │ │ └── 19.4 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── mpirun │ │ │ │ └── 4.0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── gnu-9.1.0 │ │ │ │ │ ├── intel-2019 │ │ │ │ │ └── pgi-19.4 │ │ │ │ │ ├── gcc │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── mpirun │ │ │ │ │ ├── intel │ │ │ │ │ └── 2019 │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── mpirun │ │ │ │ │ └── pgi │ │ │ │ │ └── 19.4 │ │ │ │ │ └── bin │ │ │ │ │ └── mpirun │ │ │ └── pgi │ │ │ │ ├── 18.4 │ │ │ │ └── bin │ │ │ │ │ └── pgcc │ │ │ │ └── 19.4 │ │ │ │ └── bin │ │ │ │ └── pgcc │ │ ├── flavours │ │ │ ├── bar │ │ │ │ ├── 4.7 │ │ │ │ ├── 5.4 │ │ │ │ └── common │ │ │ ├── foo │ │ │ │ ├── 1.1 │ │ │ │ ├── 2.4 │ │ │ │ └── common │ │ │ ├── gnu │ │ │ │ ├── 8.2.0 │ │ │ │ ├── 9.1.0 │ │ │ │ └── common │ │ │ ├── intel │ │ │ │ ├── 2018 │ │ │ │ ├── 2019 │ │ │ │ └── common │ │ │ ├── intelmpi │ │ │ │ └── default │ │ │ ├── mvapich │ │ │ │ ├── 2.1 │ │ │ │ ├── 2.3.1 │ │ │ │ └── common │ │ │ ├── openmpi │ │ │ │ ├── 3.1 │ │ │ │ ├── 4.0 │ │ │ │ └── common │ │ │ ├── pgi │ │ │ │ ├── 18.4 │ │ │ │ ├── 19.4 │ │ │ │ └── common │ │ │ └── simd │ │ │ │ ├── avx │ │ │ │ ├── avx2 │ │ │ │ ├── common │ │ │ │ └── sse4.1 │ │ ├── homebrewed │ │ │ ├── bar │ │ │ │ ├── 4.7 │ │ │ │ ├── 5.4 │ │ │ │ └── common │ │ │ ├── foo │ │ │ │ ├── 1.1 │ │ │ │ ├── 2.4 │ │ │ │ └── common │ │ │ ├── gcc │ │ │ │ ├── 8.2.0 │ │ │ │ ├── 9.1.0 │ │ │ │ └── common │ │ │ ├── intel │ │ │ │ ├── 2018 │ │ │ │ ├── 2019 │ │ │ │ └── common │ │ │ ├── intelmpi │ │ │ │ └── default │ │ │ ├── mvapich │ │ │ │ ├── 2.1 │ │ │ │ ├── 2.3.1 │ │ │ │ └── common │ │ │ ├── openmpi │ │ │ │ ├── 3.1 │ │ │ │ ├── 4.0 │ │ │ │ └── common │ │ │ ├── pgi │ │ │ │ ├── 18.4 │ │ │ │ ├── 19.4 │ │ │ │ └── common │ │ │ └── simd │ │ │ │ ├── avx │ │ │ │ ├── avx2 │ │ │ │ ├── common │ │ │ │ └── sse4.1 │ │ ├── modrc_common │ │ │ ├── modulerc.default_lowest_simd │ │ │ ├── modulerc.select_compiler_family │ │ │ ├── modulerc.select_compiler_version │ │ │ ├── modulerc.select_mpi_family │ │ │ └── modulerc.select_mpi_version │ │ ├── modulepath │ │ │ ├── Compiler │ │ │ │ ├── gcc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ ├── 4.7 │ │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ │ ├── avx │ │ │ │ │ │ │ │ └── sse4.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── 2.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── 3.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── bar │ │ │ │ │ │ ├── 5.4 │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ ├── avx │ │ │ │ │ │ │ └── avx2 │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── 2.4 │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ ├── 2.1 │ │ │ │ │ │ ├── 2.3.1 │ │ │ │ │ │ └── common │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── 3.1 │ │ │ │ │ │ ├── 4.0 │ │ │ │ │ │ └── common │ │ │ │ ├── intel │ │ │ │ │ ├── 2018 │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── 2.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── 3.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ └── 2019 │ │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── 2.4 │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ ├── common │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ ├── 2.1 │ │ │ │ │ │ ├── 2.3.1 │ │ │ │ │ │ └── common │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── 3.1 │ │ │ │ │ │ ├── 4.0 │ │ │ │ │ │ └── common │ │ │ │ └── pgi │ │ │ │ │ ├── 18.4 │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ └── common │ │ │ │ │ ├── mvapich │ │ │ │ │ │ ├── 2.1 │ │ │ │ │ │ └── common │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── 3.1 │ │ │ │ │ │ └── common │ │ │ │ │ └── 19.4 │ │ │ │ │ ├── foo │ │ │ │ │ ├── 2.4 │ │ │ │ │ └── common │ │ │ │ │ ├── mvapich │ │ │ │ │ ├── 2.1 │ │ │ │ │ ├── 2.3.1 │ │ │ │ │ └── common │ │ │ │ │ └── openmpi │ │ │ │ │ ├── 3.1 │ │ │ │ │ ├── 4.0 │ │ │ │ │ └── common │ │ │ ├── CompilerMPI │ │ │ │ ├── gcc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ │ │ └── common │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── 2.4 │ │ │ │ │ │ │ └── common │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── 2.4 │ │ │ │ │ │ └── common │ │ │ │ ├── intel │ │ │ │ │ ├── 2018 │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ │ │ └── common │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ └── 2019 │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ └── default │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── 2.4 │ │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── 2.4 │ │ │ │ │ │ │ └── common │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── 2.4 │ │ │ │ │ │ └── common │ │ │ │ └── pgi │ │ │ │ │ ├── 18.4 │ │ │ │ │ ├── mvapich │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ │ └── common │ │ │ │ │ └── openmpi │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ └── common │ │ │ │ │ └── 19.4 │ │ │ │ │ └── openmpi │ │ │ │ │ ├── 3.1 │ │ │ │ │ └── foo │ │ │ │ │ │ ├── 2.4 │ │ │ │ │ │ └── common │ │ │ │ │ └── 4.0 │ │ │ │ │ └── README.txt │ │ │ ├── Core │ │ │ │ ├── gcc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ ├── 9.1.0 │ │ │ │ │ └── common │ │ │ │ ├── intel │ │ │ │ │ ├── 2018 │ │ │ │ │ ├── 2019 │ │ │ │ │ └── common │ │ │ │ └── pgi │ │ │ │ │ ├── 18.4 │ │ │ │ │ ├── 19.4 │ │ │ │ │ └── common │ │ │ └── common │ │ │ │ ├── bar │ │ │ │ └── common │ │ │ │ ├── foo │ │ │ │ └── common │ │ │ │ ├── intelmpi │ │ │ │ └── common │ │ │ │ ├── mvapich │ │ │ │ └── common │ │ │ │ └── openmpi │ │ │ │ └── common │ │ ├── modulerc3 │ │ │ ├── bar │ │ │ │ ├── .modulerc │ │ │ │ ├── 4.7 │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 8.2.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── avx │ │ │ │ │ │ └── sse4.1 │ │ │ │ ├── 5.4 │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── avx │ │ │ │ │ │ └── avx2 │ │ │ │ ├── avx │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 4.7 │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ └── 5.4 │ │ │ │ ├── avx2 │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ └── 5.4 │ │ │ │ ├── common │ │ │ │ ├── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── avx │ │ │ │ │ │ │ └── 4.7 │ │ │ │ │ │ └── sse4.1 │ │ │ │ │ │ │ └── 4.7 │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── avx │ │ │ │ │ │ └── 5.4 │ │ │ │ │ │ └── avx2 │ │ │ │ │ │ └── 5.4 │ │ │ │ └── sse4.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── 8.2.0 │ │ │ │ │ └── 4.7 │ │ │ ├── foo │ │ │ │ ├── .modulerc │ │ │ │ ├── 1.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 8.2.0 │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2018 │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 18.4 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 3.1 │ │ │ │ ├── 2.4 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 4.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 19.4 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 3.1 │ │ │ │ ├── common │ │ │ │ ├── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ └── 2.4 │ │ │ │ ├── intel │ │ │ │ │ ├── 2018 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ ├── 2019 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ └── .modulerc │ │ │ │ └── pgi │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 18.4 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── mvapich │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── 1.1 │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ └── 1.1 │ │ │ │ │ └── 19.4 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── nompi │ │ │ │ │ └── 2.4 │ │ │ │ │ └── openmpi │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── 3.1 │ │ │ │ │ └── 2.4 │ │ │ ├── gcc │ │ │ │ ├── 8.2.0 │ │ │ │ ├── 9.1.0 │ │ │ │ └── common │ │ │ ├── intel │ │ │ │ ├── 2018 │ │ │ │ ├── 2019 │ │ │ │ └── common │ │ │ ├── mvapich │ │ │ │ ├── .modulerc │ │ │ │ ├── 2.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2018 │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 18.4 │ │ │ │ │ │ └── 19.4 │ │ │ │ ├── 2.3.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 19.4 │ │ │ │ ├── common │ │ │ │ ├── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 2.1 │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── 2.1 │ │ │ │ │ │ └── 2.3.1 │ │ │ │ ├── intel │ │ │ │ │ ├── 2018 │ │ │ │ │ │ └── 2.1 │ │ │ │ │ ├── 2019 │ │ │ │ │ │ ├── 2.1 │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ └── .modulerc │ │ │ │ └── pgi │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 18.4 │ │ │ │ │ └── 2.1 │ │ │ │ │ └── 19.4 │ │ │ │ │ ├── 2.1 │ │ │ │ │ └── 2.3.1 │ │ │ ├── openmpi │ │ │ │ ├── .modulerc │ │ │ │ ├── 3.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2018 │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 18.4 │ │ │ │ │ │ └── 19.4 │ │ │ │ ├── 4.0 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 19.4 │ │ │ │ ├── common │ │ │ │ ├── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 3.1 │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── 3.1 │ │ │ │ │ │ └── 4.0 │ │ │ │ ├── intel │ │ │ │ │ ├── 2018 │ │ │ │ │ │ └── 3.1 │ │ │ │ │ ├── 2019 │ │ │ │ │ │ ├── 3.1 │ │ │ │ │ │ └── 4.0 │ │ │ │ │ └── .modulerc │ │ │ │ └── pgi │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 18.4 │ │ │ │ │ └── 3.1 │ │ │ │ │ └── 19.4 │ │ │ │ │ ├── 3.1 │ │ │ │ │ └── 4.0 │ │ │ └── pgi │ │ │ │ ├── 18.4 │ │ │ │ ├── 19.4 │ │ │ │ └── common │ │ ├── modulerc4 │ │ │ ├── bar │ │ │ │ ├── .modulerc │ │ │ │ ├── 4.7 │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 8.2.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── avx │ │ │ │ │ │ └── sse4.1 │ │ │ │ ├── 5.4 │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── avx │ │ │ │ │ │ └── avx2 │ │ │ │ ├── avx │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 4.7 │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ └── 5.4 │ │ │ │ ├── avx2 │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ └── 5.4 │ │ │ │ ├── common │ │ │ │ ├── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── avx │ │ │ │ │ │ │ └── 4.7 │ │ │ │ │ │ └── sse4.1 │ │ │ │ │ │ │ └── 4.7 │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── avx │ │ │ │ │ │ └── 5.4 │ │ │ │ │ │ └── avx2 │ │ │ │ │ │ └── 5.4 │ │ │ │ └── sse4.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── 8.2.0 │ │ │ │ │ └── 4.7 │ │ │ ├── foo │ │ │ │ ├── .modulerc │ │ │ │ ├── 1.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 8.2.0 │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2018 │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 18.4 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 3.1 │ │ │ │ ├── 2.4 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 4.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 19.4 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 3.1 │ │ │ │ ├── common │ │ │ │ ├── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ └── 2.4 │ │ │ │ ├── intel │ │ │ │ │ ├── 2018 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ ├── 2019 │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── intelmpi │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ ├── mvapich │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ ├── nompi │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ └── openmpi │ │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ │ └── 4.0 │ │ │ │ │ │ │ └── 2.4 │ │ │ │ │ └── .modulerc │ │ │ │ └── pgi │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 18.4 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── mvapich │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ │ └── 1.1 │ │ │ │ │ ├── nompi │ │ │ │ │ │ └── 1.1 │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 3.1 │ │ │ │ │ │ └── 1.1 │ │ │ │ │ └── 19.4 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── nompi │ │ │ │ │ └── 2.4 │ │ │ │ │ └── openmpi │ │ │ │ │ ├── .modulerc │ │ │ │ │ └── 3.1 │ │ │ │ │ └── 2.4 │ │ │ ├── gcc │ │ │ │ ├── 8.2.0 │ │ │ │ ├── 9.1.0 │ │ │ │ └── common │ │ │ ├── intel │ │ │ │ ├── 2018 │ │ │ │ ├── 2019 │ │ │ │ └── common │ │ │ ├── mvapich │ │ │ │ ├── .modulerc │ │ │ │ ├── 2.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2018 │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 18.4 │ │ │ │ │ │ └── 19.4 │ │ │ │ ├── 2.3.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 19.4 │ │ │ │ ├── common │ │ │ │ ├── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 2.1 │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── 2.1 │ │ │ │ │ │ └── 2.3.1 │ │ │ │ ├── intel │ │ │ │ │ ├── 2018 │ │ │ │ │ │ └── 2.1 │ │ │ │ │ ├── 2019 │ │ │ │ │ │ ├── 2.1 │ │ │ │ │ │ └── 2.3.1 │ │ │ │ │ └── .modulerc │ │ │ │ └── pgi │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 18.4 │ │ │ │ │ └── 2.1 │ │ │ │ │ └── 19.4 │ │ │ │ │ ├── 2.1 │ │ │ │ │ └── 2.3.1 │ │ │ ├── openmpi │ │ │ │ ├── .modulerc │ │ │ │ ├── 3.1 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2018 │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ ├── 18.4 │ │ │ │ │ │ └── 19.4 │ │ │ │ ├── 4.0 │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 9.1.0 │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── 2019 │ │ │ │ │ │ └── .modulerc │ │ │ │ │ └── pgi │ │ │ │ │ │ ├── .modulerc │ │ │ │ │ │ └── 19.4 │ │ │ │ ├── common │ │ │ │ ├── gcc │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 8.2.0 │ │ │ │ │ │ └── 3.1 │ │ │ │ │ └── 9.1.0 │ │ │ │ │ │ ├── 3.1 │ │ │ │ │ │ └── 4.0 │ │ │ │ ├── intel │ │ │ │ │ ├── 2018 │ │ │ │ │ │ └── 3.1 │ │ │ │ │ ├── 2019 │ │ │ │ │ │ ├── 3.1 │ │ │ │ │ │ └── 4.0 │ │ │ │ │ └── .modulerc │ │ │ │ └── pgi │ │ │ │ │ ├── .modulerc │ │ │ │ │ ├── 18.4 │ │ │ │ │ └── 3.1 │ │ │ │ │ └── 19.4 │ │ │ │ │ ├── 3.1 │ │ │ │ │ └── 4.0 │ │ │ └── pgi │ │ │ │ ├── 18.4 │ │ │ │ ├── 19.4 │ │ │ │ └── common │ │ └── tcllib │ │ │ ├── ChildModules.tcl │ │ │ ├── CompilerUtils.tcl │ │ │ ├── GetFamVer.tcl │ │ │ ├── LoadedCompMatches.tcl │ │ │ ├── LoadedModules.tcl │ │ │ ├── LoadedMpiMatches.tcl │ │ │ ├── MpiUtils.tcl │ │ │ ├── WarningUtils.tcl │ │ │ └── common_utilities.tcl │ ├── ensure-user-qualify-modules │ │ ├── initrc │ │ ├── modulefiles │ │ │ ├── softa │ │ │ │ ├── 1 │ │ │ │ └── 2 │ │ │ └── softb │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── .modulerc │ │ ├── siteconfig.tcl │ │ └── siteconfig.tcl-4.3 │ ├── expose-procs-vars-to-modulefiles │ │ ├── modulefiles │ │ │ ├── bar │ │ │ │ └── 1 │ │ │ └── foo │ │ │ │ └── 1 │ │ └── siteconfig.tcl │ ├── flavored-modules │ │ └── modulefiles │ │ │ ├── .common │ │ │ ├── flavor │ │ │ ├── gromacs │ │ │ │ ├── plumed │ │ │ │ └── standard │ │ │ ├── hdf5 │ │ │ │ ├── parallel │ │ │ │ └── serial │ │ │ ├── netcdf-fortran │ │ │ │ └── .modulerc │ │ │ └── netcdf │ │ │ │ └── .modulerc │ │ │ ├── gcc │ │ │ ├── 8 │ │ │ └── 4.8 │ │ │ ├── gromacs │ │ │ └── 5 │ │ │ ├── hdf5 │ │ │ ├── 1.10 │ │ │ └── 1.8 │ │ │ ├── intel │ │ │ ├── 15 │ │ │ └── 17 │ │ │ ├── intelmpi │ │ │ └── 17 │ │ │ ├── jasper │ │ │ └── 1.900 │ │ │ ├── netcdf-fortran │ │ │ └── 4.4 │ │ │ ├── netcdf │ │ │ └── 4.6 │ │ │ ├── openmpi │ │ │ └── 2.0 │ │ │ ├── pgi │ │ │ └── 18 │ │ │ └── wrf │ │ │ └── 3.9 │ ├── hide-and-forbid-modules │ │ └── modulefiles │ │ │ ├── .modulerc │ │ │ ├── appA │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ ├── appB │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ ├── bioappA │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ ├── bioappB │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ ├── chemappA │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ ├── chemappB │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ ├── deplibA │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ └── deplibB │ │ │ ├── 1.0 │ │ │ └── 2.0 │ ├── inhibit-report-info │ │ ├── modulefiles │ │ │ ├── bar │ │ │ └── foo │ │ └── siteconfig.tcl │ ├── log-module-commands │ │ └── siteconfig.tcl │ ├── module-info-name-return-basename │ │ ├── modulefiles │ │ │ └── info │ │ │ │ └── name │ │ └── siteconfig.tcl │ ├── modulefiles-in-git │ │ └── modulefiles │ │ │ └── localmodules │ ├── modulepaths-persist-over-sudo │ │ └── rc │ ├── new-features-without-breaking-old-module │ │ └── modulefiles │ │ │ ├── .modulerc │ │ │ ├── bar │ │ │ ├── .common │ │ │ └── .modulerc │ │ │ └── foo │ │ │ ├── 1.1 │ │ │ └── 1.2 │ ├── sc19 │ │ └── modulefiles │ │ │ ├── appA │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ ├── appB │ │ │ └── 1.0 │ │ │ ├── appC │ │ │ ├── .modulerc │ │ │ ├── 1.0 │ │ │ ├── 2.0 │ │ │ ├── 2.2.10 │ │ │ ├── 2.2.2 │ │ │ ├── 2.4 │ │ │ └── 3.6 │ │ │ ├── appD │ │ │ ├── 1.2 │ │ │ └── 2.1 │ │ │ ├── libX │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ ├── libY │ │ │ ├── .modulerc │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ │ └── toolchain │ │ │ ├── a │ │ │ └── b │ ├── source-script-in-modulefile │ │ ├── bar-2.1 │ │ │ ├── bar-setup.csh │ │ │ ├── bar-setup.sh │ │ │ └── bin │ │ │ │ └── barbin │ │ ├── foo-1.2 │ │ │ ├── bin │ │ │ │ └── foobin │ │ │ └── foo-setup.sh │ │ └── modulefiles │ │ │ ├── bar │ │ │ └── 2.1 │ │ │ └── foo │ │ │ └── 1.2 │ ├── sticky-modules │ │ └── modulefiles │ │ │ ├── compiler │ │ │ ├── .modulerc │ │ │ ├── compA │ │ │ │ ├── 1.0 │ │ │ │ └── 1.2 │ │ │ └── compB │ │ │ │ ├── 1.3 │ │ │ │ └── 2.1 │ │ │ └── core │ │ │ ├── .modulerc │ │ │ ├── 1.0 │ │ │ └── 2.0 │ ├── test-modulefiles │ │ └── modulefiles │ │ │ └── test_dir_and_file │ ├── tips-for-code-reuse │ │ ├── bar │ │ │ ├── 1.0 │ │ │ │ ├── nothreads │ │ │ │ ├── openmp │ │ │ │ └── pthreads │ │ │ ├── 2.0 │ │ │ │ ├── nothreads │ │ │ │ ├── openmp │ │ │ │ └── pthreads │ │ │ └── common │ │ ├── foo │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ ├── fooA │ │ │ ├── 1.0 │ │ │ ├── 2.0 │ │ │ └── common │ │ └── fooB │ │ │ ├── .generic │ │ │ ├── 1.0 │ │ │ ├── 2.0 │ │ │ └── common │ ├── top-priority-values │ │ ├── modulefiles │ │ │ ├── bar │ │ │ │ └── 1 │ │ │ └── foo │ │ │ │ └── 1 │ │ └── siteconfig.tcl │ └── unload-firstly-loaded │ │ ├── modulefiles │ │ └── foo │ │ │ ├── 1 │ │ │ └── 2 │ │ └── siteconfig.tcl ├── img │ ├── favicon.ico │ ├── modules_red.svg │ └── modules_white.svg ├── paper │ ├── MC2_whitney_paper.pdf │ ├── Modules-Paper.pdf │ ├── absmod.pdf │ └── user-setup.pdf └── source │ ├── CHARTER.rst │ ├── CONTRIBUTING.rst │ ├── FAQ.rst │ ├── GOVERNANCE.rst │ ├── INSTALL-win.rst │ ├── INSTALL.rst │ ├── MIGRATING.rst │ ├── NEWS.rst │ ├── _static │ ├── literal_block.css │ ├── rtd_literal_block.css │ ├── rtd_theme_overrides.css │ └── terminal_output.css │ ├── acknowledgments.rst │ ├── changes.rst │ ├── conf.py │ ├── cookbook.rst │ ├── cookbook │ ├── compiler-etc-dependencies.rst │ ├── ensure-user-qualify-modules.rst │ ├── expose-procs-vars-to-modulefiles.rst │ ├── hide-and-forbid-modules.rst │ ├── inhibit-report-info.rst │ ├── log-module-commands.rst │ ├── man-path.rst │ ├── module-info-name-return-basename.rst │ ├── modulefiles-in-git.rst │ ├── modulepaths-persist-over-sudo.rst │ ├── new-features-without-breaking-old-module.rst │ ├── reduce-io-load.rst │ ├── source-script-in-modulefile.rst │ ├── sticky-modules.rst │ ├── test-modulefiles.rst │ ├── tips-for-code-reuse.rst │ ├── top-priority-values.rst │ └── unload-firstly-loaded.rst │ ├── design.rst │ ├── design │ ├── advanced-module-version-specifiers.rst │ ├── conflict-unload.rst │ ├── control-mode-behaviors.rst │ ├── default-latest-version-specifiers.rst │ ├── evaluation-errors.rst │ ├── extended-default.rst │ ├── extra-match-search.rst │ ├── hide-or-forbid-modulefile.rst │ ├── initial-environment.rst │ ├── insensitive-case.rst │ ├── lint-sub-command.rst │ ├── lmod-tcl-modulefile-compat.rst │ ├── magic-cookie-check.rst │ ├── mod-to-sh-sub-command.rst │ ├── mode-select.rst │ ├── module-cache.rst │ ├── module-selection-contexts.rst │ ├── module-tags.rst │ ├── module-warn.rst │ ├── modulepath-option.rst │ ├── output-configuration.rst │ ├── shell-completion.rst │ ├── source-shell-script-in-modulefile.rst │ ├── spider-sub-command.rst │ ├── stash-environment.rst │ ├── sticky-modules.rst │ └── variants.rst │ ├── devel.rst │ ├── devel │ ├── add-new-config-option.rst │ ├── add-new-maintainer.rst │ ├── add-new-sub-command.rst │ └── create-new-release.rst │ ├── index.rst │ ├── ml.rst │ ├── module.rst │ ├── modulefile.rst │ ├── other-implementations.rst │ ├── requirements.txt │ └── version.py.in ├── init ├── Makefile ├── bash.in ├── bash_completion.in ├── cmake.in ├── cmd.cmd ├── csh.in ├── fish.in ├── fish_completion ├── initrc.in ├── ksh.in ├── lisp.in ├── modulespath.in ├── perl.pm.in ├── profile.csh.in ├── profile.sh.in ├── pwsh.ps1.in ├── python.py.in ├── r.R.in ├── ruby.rb.in ├── sh.in ├── tcl.in ├── tcsh_completion.in ├── zsh-functions │ └── _module.in └── zsh.in ├── lib ├── Makefile.in ├── aclocal.m4 ├── configure.ac ├── envmodules.c ├── envmodules.h ├── tcl.m4 ├── testutil-0getgroups.c ├── testutil-closedir.c ├── testutil-dupgetgroups.c ├── testutil-getgrgid.c ├── testutil-getgroups.c ├── testutil-getpwuid.c ├── testutil-mktime.c └── testutil-time.c ├── script ├── INSTALL.bat ├── INSTALL_PWSH.bat ├── TESTINSTALL.bat ├── TESTINSTALL_PWSH.ps1 ├── UNINSTALL.bat ├── add.modules.in ├── envml ├── envml.cmd ├── gitlog2changelog.py.in ├── mkroot ├── ml.cmd ├── module.cmd ├── modulecmd.in ├── mt ├── mtreview └── playdemo ├── share ├── guide │ └── get_started │ │ ├── 00-cleanup.sh │ │ ├── 01-modulepath-modulerc.sh │ │ ├── 02-first_module-install.sh │ │ ├── 03-first_module-bar.sh │ │ ├── 04-second_modulefile.sh │ │ ├── 05-more_modulefile-foo.sh │ │ ├── 06-more_modulefile-share.sh │ │ ├── 07-guide_modulefile_search.sh │ │ ├── 08-guide_modulefile_search-alias.sh │ │ ├── 09-global_modulerc.sh │ │ ├── 10-restrict_visibility.sh │ │ ├── 11-restore_visibility.sh │ │ ├── 12-datadir-create.sh │ │ ├── 13-datadir-common.sh │ │ ├── 14-datadir-versions.sh │ │ ├── 15-datadir-virtual.sh │ │ ├── 16-conflict.sh │ │ ├── 17-prereq.sh │ │ ├── 18-collection-target.sh │ │ ├── 19-siteconfig.sh │ │ ├── README │ │ └── test.py ├── logo │ ├── modules_logo.svg │ ├── modules_logo_black.svg │ ├── modules_logo_black_text.svg │ ├── modules_logo_text.svg │ ├── modules_logo_white.svg │ └── modules_logo_white_text.svg ├── modulefiles │ ├── dot │ ├── module-git │ ├── module-info │ ├── modules.in │ ├── null │ ├── use.own │ └── version.in ├── nagelfar │ ├── plugin_globalrc.tcl │ ├── plugin_modulecache.tcl │ ├── plugin_modulefile.tcl │ ├── plugin_modulerc.tcl │ ├── syntaxdb_modulecache.tcl │ ├── syntaxdb_modulefile.tcl │ └── syntaxdb_modulerc.tcl ├── rpm │ ├── environment-modules.rpmlintrc │ ├── environment-modules.spec.in │ └── macros.environment-modules └── vim │ ├── ftdetect │ └── modulefile.vim │ ├── ftplugin │ └── modulefile.vim │ └── syntax │ └── modulefile.vim ├── site.exp.in ├── siteconfig.tcl ├── tcl ├── cache.tcl.in ├── coll.tcl.in ├── envmngt.tcl.in ├── init.tcl.in ├── interp.tcl.in ├── main.tcl.in ├── mfcmd.tcl ├── modeval.tcl ├── modfind.tcl.in ├── modscan.tcl ├── modspec.tcl ├── report.tcl.in ├── subcmd.tcl.in └── util.tcl ├── testsuite ├── bin │ ├── install_test_cmake │ ├── install_test_csh │ ├── install_test_fish │ ├── install_test_perl │ ├── install_test_pwsh │ ├── install_test_python │ ├── install_test_r │ ├── install_test_ruby │ ├── install_test_sh │ └── install_test_tcl ├── cmd.exe ├── config │ ├── base-config.exp │ └── unix.exp ├── etc │ ├── bad │ ├── empty │ ├── modulerc │ ├── modulerc.altname │ ├── modulerc.bench3 │ ├── modulerc.cross │ ├── modulerc.deepvirt │ ├── modulerc.depsaltname │ ├── modulerc.fptag │ ├── modulerc.hide │ ├── modulerc.hide-deps │ ├── modulerc.label │ ├── modulerc.multi1 │ ├── modulerc.multi2 │ ├── modulerc.scan │ ├── modulerc.spider │ ├── modulerc.tag │ └── rc ├── example │ ├── .modulespath.in │ ├── eval-sh-to-mod.sh │ ├── initrc-1.in │ ├── initrc.in │ ├── mini-sh-to-mod.sh │ ├── modulerc.in │ ├── modulespath-empty │ ├── modulespath-wild.in │ ├── sh-to-mod.csh │ ├── sh-to-mod.fish │ ├── sh-to-mod.sh │ ├── siteconfig.tcl │ ├── siteconfig.tcl-1 │ └── siteconfig.tcl-2 ├── home.2 │ └── .modulerc ├── home.3 │ └── .modulerc ├── home.4 │ └── .modulerc ├── home │ ├── .Xresources │ ├── .module │ │ ├── .target │ │ ├── coll1 │ │ ├── coll2 │ │ ├── coll3 │ │ ├── coll4.target │ │ ├── coll48 │ │ ├── coll6.target │ │ ├── default │ │ ├── infocmd │ │ └── infocmdexp │ ├── .modulerc │ ├── .modules.save │ ├── .modules.saveempty │ ├── .modules.savenull │ ├── coll-error-on-load │ ├── coll-error-on-load-2 │ ├── coll-error-on-unload │ ├── coll-hide-once-loaded │ ├── coll-hide-once-loaded-nuasked │ ├── coll-sticky-0 │ ├── coll-sticky-1 │ ├── coll-sticky-2 │ ├── coll-sticky-3 │ ├── coll-sticky-4 │ ├── coll-sticky-5 │ ├── coll-sticky-6 │ ├── coll10 │ ├── coll11 │ ├── coll12 │ ├── coll13 │ ├── coll14 │ ├── coll15 │ ├── coll16 │ ├── coll26 │ ├── coll27 │ ├── coll28 │ ├── coll29 │ ├── coll30 │ ├── coll31 │ ├── coll32 │ ├── coll33 │ ├── coll39 │ ├── coll40 │ ├── coll41 │ ├── coll42 │ ├── coll43 │ ├── coll45 │ ├── coll46 │ ├── coll49 │ ├── coll49-tosource │ ├── coll5 │ ├── coll7 │ ├── coll8 │ ├── coll9 │ ├── rcnomagic │ └── rctosource ├── install.00-init │ ├── 005-init_ts.exp │ ├── 006-procs.exp │ ├── 010-environ.exp │ ├── 011-save_test_env.exp │ ├── 020-module.exp │ ├── 024-ml.exp │ ├── 025-autoinit.exp │ ├── 030-options.exp │ ├── 040-subshell.exp │ ├── 050-crossshell.exp │ ├── 060-quar.exp │ ├── 070-stderrtty.exp │ ├── 080-args.exp │ ├── 090-sh-to-mod.exp │ └── 091-source-sh.exp ├── is_func_defined ├── is_func_defined.fish ├── lint.00-init │ ├── 005-init_ts.exp │ ├── 006-procs.exp │ ├── 011-save_test_env.exp │ ├── 020-sh.exp │ ├── 021-bash.exp │ ├── 022-ksh.exp │ └── 030-tcl.exp ├── mode ├── modulefiles wspace ├── modulefiles.2 │ ├── .modulerc │ ├── 1.1 │ │ └── version │ ├── 1.2 │ │ └── version │ ├── 1.3 │ │ └── version │ ├── ICASE │ │ └── 1 │ ├── ICASE2 │ │ └── 1 │ ├── ICASE3 │ │ ├── 1.1 │ │ ├── VERS.1 │ │ └── vers.1 │ ├── IcAsE │ │ └── 1 │ ├── NaN │ ├── advvers │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5 │ │ ├── 1.6 │ │ ├── 1.7 │ │ ├── 1.8 │ │ └── deep │ │ │ └── 1 │ │ │ └── 1.2 │ ├── advvers10 │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 5 │ │ ├── 6 │ │ ├── 7 │ │ └── 8 │ ├── advvers2 │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 3.0 │ │ ├── 3.1 │ │ ├── 3.2 │ │ ├── 3.3 │ │ ├── 4.0 │ │ ├── 4.1 │ │ ├── 4.2 │ │ ├── 5.0 │ │ ├── 5.1 │ │ ├── 5.2 │ │ ├── 5.3 │ │ ├── 6.0 │ │ ├── 6.1 │ │ ├── 6.2 │ │ ├── 6.3 │ │ ├── 6.4 │ │ ├── 6.5 │ │ ├── 6.6 │ │ ├── 6.7 │ │ ├── 7.0 │ │ ├── 8.1.1 │ │ ├── 8.1.2 │ │ ├── 8.2.1 │ │ ├── 8.2.2 │ │ ├── 8.3.1 │ │ ├── 8.3.2 │ │ ├── 8.4.1 │ │ ├── 8.4.2 │ │ ├── 8.5.1 │ │ └── 8.5.2 │ ├── advvers4 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5.1 │ │ ├── 1.5.2 │ │ ├── 1.6 │ │ ├── 1.7 │ │ ├── 1.8 │ │ ├── 2.0 │ │ └── 2.1 │ ├── advvers5 │ │ ├── .modulerc │ │ ├── 0.9 │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.3.1 │ │ ├── 1.3.2 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 3.0 │ │ ├── 3.1 │ │ ├── 3.2 │ │ ├── 3.3 │ │ ├── 4.0 │ │ ├── 4.1 │ │ ├── 4.2 │ │ ├── 5.0 │ │ ├── 5.1 │ │ ├── 5.2 │ │ ├── 5.3 │ │ ├── 6.0 │ │ ├── 6.1 │ │ ├── 6.2 │ │ ├── 6.3 │ │ ├── 6.4 │ │ ├── 6.5 │ │ ├── 6.6 │ │ ├── 6.7 │ │ ├── 7.0 │ │ ├── 8.1.1 │ │ ├── 8.1.2 │ │ ├── 8.2.1 │ │ ├── 8.2.2 │ │ ├── 8.3.1 │ │ ├── 8.3.2 │ │ ├── 8.4.1 │ │ ├── 8.4.2 │ │ ├── 8.5.1 │ │ ├── 8.5.2 │ │ └── 9.0 │ ├── advvers6 │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5.1 │ │ ├── 1.5.2 │ │ ├── 1.6 │ │ ├── 1.7 │ │ ├── 1.8 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 3.0 │ │ ├── 3.1 │ │ └── 3.2 │ ├── advvers7 │ │ ├── .modulerc │ │ ├── 0.9 │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.3.1 │ │ ├── 1.3.2 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 3.0 │ │ ├── 3.1 │ │ ├── 3.2 │ │ ├── 3.3 │ │ ├── 4.0 │ │ ├── 4.1 │ │ ├── 4.2 │ │ ├── 5.0 │ │ ├── 5.1 │ │ ├── 5.2 │ │ ├── 5.3 │ │ ├── 6.0 │ │ ├── 6.1 │ │ ├── 6.2 │ │ ├── 6.3 │ │ ├── 6.4 │ │ ├── 6.5 │ │ ├── 6.6 │ │ ├── 6.7 │ │ ├── 7.0 │ │ ├── 8.1.1 │ │ ├── 8.1.2 │ │ ├── 8.2.1 │ │ ├── 8.2.2 │ │ ├── 8.3.1 │ │ ├── 8.3.2 │ │ ├── 8.4.1 │ │ ├── 8.4.2 │ │ ├── 8.5.1 │ │ ├── 8.5.2 │ │ └── 9.0 │ ├── advvers8 │ │ ├── 1 │ │ ├── 2 │ │ └── 3 │ ├── advvers9 │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ └── .modulerc │ ├── advvers@2.1 │ ├── advvers@2.2 │ ├── autosym1 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── autosym2 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── autosym3 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── autosym4 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── autosym5 │ │ ├── 1 │ │ ├── 2 │ │ ├── .modulerc │ │ └── default │ ├── autosym6 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── autosym7 │ │ ├── dir1 │ │ │ ├── 1 │ │ │ └── 2 │ │ └── dir2 │ │ │ ├── 1 │ │ │ └── 2 │ ├── autosym8 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── autosym9 │ │ └── 1 │ ├── bad3 │ │ ├── .bodycommon │ │ ├── .proccommon │ │ ├── bodyfor │ │ ├── bodyif │ │ ├── bodyproc │ │ ├── bodysource │ │ ├── bodywhile │ │ ├── proc2 │ │ ├── proc3 │ │ ├── procproc │ │ └── procsource │ ├── badrc3 │ │ ├── 1 │ │ └── .modulerc │ ├── bar │ │ ├── 1 │ │ ├── 2 │ │ ├── 0.1 │ │ └── 0.2 │ ├── baz │ │ ├── 1 │ │ └── 2 │ ├── clear │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ └── .modulerc │ ├── deepvirt1 │ │ └── .modulerc │ ├── e.t.fl │ │ ├── 1.3.1 │ │ ├── 1.3.7 │ │ └── 1.4.5 │ ├── extdfl │ │ ├── .1.3.3 │ │ ├── .1.3.4 │ │ ├── .modulerc │ │ ├── 1.0.0-alpha.1 │ │ ├── 1.0.0-alpha.beta │ │ ├── 1.0.0-beta │ │ ├── 1.0.2 │ │ ├── 1.1.0 │ │ ├── 1.1.0-beta │ │ ├── 1.2.10 │ │ ├── 1.2.3 │ │ ├── 1.3.1 │ │ ├── 1.3.7 │ │ ├── 1.4.5 │ │ ├── 2.0 │ │ └── 2.0.1 │ ├── extdfl2 │ │ ├── .modulerc │ │ ├── 2.rc.1 │ │ ├── 2.rc.2 │ │ ├── 3.0.0 │ │ ├── 3.0.15 │ │ ├── 3.0.2 │ │ ├── 3.010.1 │ │ ├── 3.09.3 │ │ ├── 3.1.3 │ │ ├── 3.1.7 │ │ ├── 3.10.2 │ │ └── 3.9.2 │ ├── extdfl3 │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 1.1 │ │ │ └── 3 │ │ └── 1.3 │ │ │ └── 4 │ ├── extdfl6 │ │ ├── conflict │ │ ├── conflict2 │ │ ├── conflicta │ │ ├── conflicts │ │ ├── info │ │ ├── info2 │ │ ├── isloaded │ │ ├── isloaded2 │ │ ├── load │ │ ├── load2 │ │ ├── load3 │ │ ├── prereq │ │ ├── prereq2 │ │ ├── prereqc │ │ ├── prereqi │ │ ├── prereqi2 │ │ ├── unload │ │ └── unload2 │ ├── extdfl7 │ │ ├── .modulerc │ │ ├── 1.1 │ │ ├── 10a │ │ ├── 10foo │ │ ├── 10g │ │ ├── 2.1 │ │ ├── 2.10 │ │ ├── 3.1 │ │ ├── 4.1 │ │ ├── 5.1 │ │ ├── 6.1 │ │ ├── 7.0 │ │ └── 7.1 │ ├── extdfl8 │ │ ├── 1.3.1 │ │ ├── 1.3.7 │ │ ├── 1.33 │ │ └── 1.4.5 │ ├── extdflb.4.0 │ ├── extdflb.4.1 │ │ └── 1 │ ├── extdflc-4 │ │ └── 1 │ ├── extdflc-5 │ │ └── 1 │ ├── f │ ├── foo │ │ ├── 1 │ │ ├── 2 │ │ ├── 0.1 │ │ └── 0.2 │ ├── hide1 │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 3.0 │ │ ├── 3.1 │ │ ├── 3.2 │ │ ├── 4.0 │ │ └── 5.0 │ ├── hide2 │ │ ├── .modulerc │ │ └── 1.0 │ ├── hide3 │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── sub1 │ │ │ ├── 2.0 │ │ │ └── 3.0 │ │ └── sub2 │ │ │ ├── .modulerc │ │ │ ├── 4.0 │ │ │ └── 5.0 │ ├── hide4 │ │ └── .1.0 │ ├── hidereq │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 2.3 │ │ ├── 2.4 │ │ ├── 2.5 │ │ ├── 2.6 │ │ ├── 3.0 │ │ ├── 4.0 │ │ ├── 4.1 │ │ ├── 4.2 │ │ ├── 4.3 │ │ └── 4.4 │ ├── iCaSe │ │ └── 1 │ ├── iCaSe2 │ │ └── 1 │ ├── iCaSe3 │ │ ├── 1.3 │ │ └── 1.4 │ ├── icASE │ │ └── 1 │ ├── icase │ │ ├── 1 │ │ ├── conflict │ │ ├── conflicta │ │ ├── conflictp │ │ ├── conflicts │ │ ├── info │ │ ├── infoloaded │ │ ├── isloaded │ │ ├── load │ │ ├── loadi │ │ ├── prereq │ │ ├── prereqc │ │ ├── unload │ │ └── z │ ├── icase3 │ │ └── 1.2 │ ├── info │ │ ├── .modulerc │ │ ├── usergroups │ │ └── username │ ├── load │ ├── loc │ ├── longerrword │ ├── mlinmod │ ├── modemptyarg │ │ ├── aliases │ │ ├── apropos │ │ ├── avail │ │ ├── display │ │ ├── list │ │ ├── load │ │ ├── load-any │ │ ├── purge │ │ ├── reload │ │ ├── restore │ │ ├── save │ │ ├── savelist │ │ ├── saverm │ │ ├── saveshow │ │ ├── swap │ │ ├── swap2 │ │ ├── swap3 │ │ ├── test │ │ ├── try-load │ │ ├── unload │ │ ├── unuse │ │ ├── use │ │ └── whatis │ ├── nanbar │ │ ├── 1 │ │ ├── 2 │ │ └── nan │ ├── nanfoo │ │ ├── 1 │ │ └── .modulerc │ ├── nocase │ │ ├── 1 │ │ ├── .hidden │ │ ├── .modulerc │ │ ├── deep │ │ │ ├── 2 │ │ │ └── 3 │ │ ├── deep2 │ │ │ └── notamodule │ │ └── regular │ ├── nocase2 │ ├── nocase7 │ │ ├── conflictim1 │ │ ├── conflictim2 │ │ ├── prereqim1 │ │ └── prereqim2 │ ├── putsvar │ ├── quar │ ├── quux │ │ └── 1 │ ├── qux │ │ ├── 1 │ │ └── 2 │ ├── restore │ ├── setenv │ │ └── 0.1 │ ├── source-sh │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4.0 │ │ ├── 4.1 │ │ ├── 4.2 │ │ ├── 4.3 │ │ ├── 5.0 │ │ ├── 5.1 │ │ ├── 6.0 │ │ ├── 7.0 │ │ ├── 7.1 │ │ ├── 7.2 │ │ └── 8.0 │ ├── sp.ce y+ │ │ ├── 0 2 │ │ ├── 1.2 │ │ ├── 2.10 │ │ ├── 2.4 │ │ ├── 2.6 │ │ └── 2.7 │ ├── space ya │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── space yb │ │ ├── 1 │ │ └── .modulerc │ ├── space yc │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ └── 5 │ ├── space yd │ │ ├── 2.1 │ │ ├── 2.10 │ │ ├── 2.2 │ │ ├── 3.0 │ │ ├── 4.1 │ │ └── 5.0 │ ├── space ye │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5 │ │ ├── 1.6 │ │ ├── 1.7 │ │ ├── 1.8 │ │ ├── 1.9 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 2.3 │ │ ├── 2.4 │ │ ├── 2.5 │ │ ├── 2.6 │ │ ├── 2.7 │ │ ├── 2.8 │ │ └── 2.9 │ ├── spacen │ │ ├── 1 │ │ ├── .modulerc │ │ └── 2 s │ ├── spacenb │ │ ├── 1 │ │ └── .modulerc │ ├── spacenc │ │ ├── 2 │ │ ├── 3 │ │ └── 4 │ ├── t │ ├── unloc │ └── veryveryveryveryveryveryveryverylong │ │ ├── .modulerc │ │ └── name ├── modulefiles.3 │ ├── .modulerc │ ├── advvers │ │ └── 1.0 │ ├── advvers2 │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 2.0 │ │ ├── 2.10 │ │ ├── 2.2 │ │ ├── 2.8 │ │ ├── 3.7 │ │ ├── 4.2 │ │ └── foo │ ├── bar │ │ ├── 1.0 │ │ └── 2.0 │ ├── baz │ │ ├── 1.0 │ │ └── 2.0 │ ├── complete │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ └── 2.0 │ ├── flatlcompat │ ├── foo │ │ ├── .modulerc │ │ ├── 0.2 │ │ ├── 0.err │ │ ├── 0.load │ │ ├── 0.prereq │ │ ├── 1.0 │ │ └── 2.0 │ ├── impreq │ │ ├── load │ │ ├── loaderr │ │ ├── loadmul │ │ ├── loadsubm │ │ ├── loadsubp │ │ ├── loadunk │ │ ├── mix │ │ ├── prereq │ │ ├── switch1 │ │ ├── switch1err │ │ ├── switch1unk │ │ ├── switch2 │ │ ├── switchsubm │ │ ├── switchsubp │ │ ├── unload │ │ ├── unloaderr │ │ └── unloadmul │ ├── info │ │ ├── .modulerc │ │ ├── tags │ │ └── tags2 │ ├── interp │ │ ├── 0 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── keep │ │ ├── 1.0 │ │ └── 2.0 │ ├── key │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 4.0 │ │ └── 5.0 │ ├── lcompat │ │ ├── .modulerc │ │ ├── .version │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.10 │ │ ├── 1.11 │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5 │ │ ├── 1.6 │ │ ├── 1.7 │ │ ├── 1.8 │ │ ├── 1.9 │ │ │ ├── 1.9 │ │ │ └── 2.0 │ │ └── 2.0 │ ├── lcompatdep │ │ ├── 1.4 │ │ └── 2.0 │ ├── lint │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 1.4 │ │ └── 2.0 │ ├── list │ │ ├── 1.0 │ │ └── 2.0 │ ├── loadany │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── mfvar │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── mod-to-sh │ │ ├── 1.0 │ │ ├── 1.1 │ │ └── 2.0 │ ├── modbad │ │ ├── cachebuild │ │ ├── cacheclear │ │ ├── lint │ │ ├── mod-to-sh │ │ ├── refresh │ │ ├── reset │ │ ├── source │ │ ├── spider │ │ ├── stash │ │ ├── stashclear │ │ ├── stashlist │ │ ├── stashpop │ │ ├── stashrm │ │ ├── stashshow │ │ └── state │ ├── noglobeval │ │ └── 1.0 │ ├── notreq │ │ ├── load │ │ ├── loadany │ │ ├── loadanymul │ │ ├── loaderr │ │ ├── loadmul │ │ ├── loadsubm │ │ ├── loadsubp │ │ ├── loadunk │ │ ├── mix │ │ ├── prereq │ │ ├── switch1 │ │ ├── switch1err │ │ ├── switch1unk │ │ ├── switch2 │ │ ├── switchsubm │ │ ├── switchsubp │ │ ├── tryload │ │ ├── tryloadmul │ │ ├── unload │ │ ├── unloaderr │ │ ├── unloadmul │ │ └── use │ ├── optional │ │ ├── 1.0 │ │ └── 2.0 │ ├── output │ │ └── 1.0 │ ├── path-cmd-opt │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5 │ │ └── 2.0 │ ├── protect │ │ ├── 1.0 │ │ └── 2.0 │ ├── puts │ │ └── prestdout │ ├── qux │ │ ├── 1 │ │ └── 2 │ ├── refresh │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 3.0 │ │ ├── 4.0 │ │ ├── 5.0 │ │ └── 6.0 │ ├── reset │ │ ├── 1 │ │ └── 2 │ ├── source-sh │ │ ├── conda │ │ ├── openfoam │ │ └── spack │ ├── sticky │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 3.0 │ │ └── 4.0 │ ├── stickysub │ │ ├── .modulerc │ │ ├── dir1 │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ └── dir2 │ │ │ ├── 3.0 │ │ │ └── 4.0 │ ├── tag │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 4.0 │ │ ├── 5.0 │ │ ├── 6.0 │ │ ├── 7.0 │ │ ├── 8.0 │ │ └── 9.0 │ ├── tryload │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── unsetenv │ │ └── 2.0 │ ├── var=val │ ├── variant │ │ ├── .modulerc │ │ ├── .w s │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 2.1 │ │ │ └── 2 │ │ │ │ └── 1 │ │ ├── 3.0 │ │ ├── 4.0 │ │ ├── 5.0 │ │ ├── 5.1 │ │ ├── 6.0 │ │ ├── 7.0 │ │ ├── 7.1 │ │ ├── 8.0 │ │ └── w s │ ├── versioncmp │ │ ├── .modulerc │ │ └── 1.0 │ ├── vrreq1 │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── w s │ ├── vrreq2 │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── w s │ ├── vrreq3 │ │ ├── 1.0 │ │ └── 2.0 │ └── vrreq4 │ │ ├── 1.0 │ │ └── 2.0 ├── modulefiles.4 │ ├── .modulerc │ ├── all │ │ ├── 1.0 │ │ └── 2.0 │ ├── append │ │ ├── 1.0 │ │ └── 2.0 │ ├── auto-load │ │ ├── 1 │ │ └── 2 │ ├── bar │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── conun │ │ ├── 1 │ │ ├── 2 │ │ └── 3 │ ├── delim │ │ ├── 1.0 │ │ └── 2.0 │ ├── depre │ │ ├── 1 │ │ └── 2 │ ├── err │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── eval-source-sh │ │ ├── 1 │ │ └── 2 │ ├── extra │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── foo │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── 9.0 │ ├── help │ │ ├── 1 │ │ └── 2 │ ├── hide │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── info │ │ ├── auto-loaded │ │ ├── command │ │ ├── commandexp │ │ ├── mode7 │ │ └── mode8 │ ├── label │ │ ├── .modulerc │ │ └── 1.0 │ ├── lcompat │ │ ├── .modulerc │ │ ├── 1.12 │ │ └── 2.0 │ ├── lconun │ │ ├── 1 │ │ └── 2 │ ├── lerr │ │ ├── 1.0 │ │ └── 2.0 │ ├── llerr │ │ ├── 1.0 │ │ └── 2.0 │ ├── lsb-release │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── modulepath-opt │ │ ├── 1 │ │ └── 2 │ ├── modulepath │ │ ├── 1 │ │ └── 2 │ ├── prepend │ │ ├── 1.0 │ │ └── 2.0 │ ├── puts │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── qux │ │ ├── 1 │ │ ├── 3 │ │ └── .modulerc │ ├── remove │ │ ├── 1.0 │ │ └── 2.0 │ ├── scan │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── setenv │ │ ├── 1.0 │ │ └── 2.0 │ ├── source-sh │ │ ├── 1 │ │ └── 2 │ ├── source │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── source_file │ │ └── zz │ ├── sticky0 │ ├── sticky1 │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── 3.0 │ ├── sticky2 │ │ ├── 1.0 │ │ └── 2.0 │ ├── sticky3 │ │ ├── 1.0 │ │ └── 2.0 │ ├── sticky4 │ │ ├── .modulerc │ │ ├── sub │ │ │ ├── 1.0 │ │ │ ├── 2.0 │ │ │ └── 3.0 │ │ └── sub2 │ │ │ └── 1.0 │ ├── tag │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 1.2.sub │ │ │ └── 1.0 │ │ ├── 2.0 │ │ └── 2.1 │ ├── tfoo │ │ ├── 1.0 │ │ └── 2.0 │ ├── ufoo │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── 3.0 │ ├── uniq │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 3.0 │ │ └── 4.0 │ ├── uniqsub │ │ ├── sub1 │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ └── sub2 │ │ │ ├── 3.0 │ │ │ └── 4.0 │ ├── unload │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── 3.0 │ ├── unset │ │ ├── 1.0 │ │ └── 2.0 │ ├── use │ │ └── 1.0 │ ├── variant1 │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── warn │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── xtbar │ │ ├── 1.0 │ │ └── 2.0 │ └── xtfoo │ │ └── 1.0 ├── modulefiles.allin │ ├── allenvchg │ │ ├── 1 │ │ └── 2 │ ├── allin │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ └── 5 │ └── restoreenv │ │ ├── 1 │ │ ├── 2 │ │ ├── 0.1 │ │ └── 0.2 ├── modulefiles.deep │ ├── badmodvers │ │ ├── .version │ │ ├── dir1 │ │ │ └── 2.0 │ │ └── foo │ ├── dir2 │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 3.0 │ ├── emptydeepdir │ │ └── emptydir │ │ │ └── .ignored │ ├── modalias │ │ ├── .modulerc │ │ ├── 3.0 │ │ ├── dir1 │ │ │ ├── .modulerc │ │ │ └── 1.0 │ │ ├── dir2 │ │ │ ├── .modulerc │ │ │ └── 2.0 │ │ └── dir3 │ │ │ └── .ignored │ ├── moddalias │ │ ├── .modulerc │ │ ├── dir1 │ │ │ └── 1 │ │ └── dir2 │ │ │ └── .ignored │ ├── moddef │ │ └── dir2 │ │ │ ├── .modulerc │ │ │ ├── 1.0 │ │ │ └── 2.0 │ ├── modload │ │ └── dir2 │ │ │ ├── .modulerc │ │ │ ├── 1.0 │ │ │ └── 3.0 │ ├── modsym │ │ ├── .modulerc │ │ ├── dir1 │ │ │ └── 1.0 │ │ └── dir2 │ │ │ ├── .modulerc │ │ │ └── 2.0 │ ├── modtr │ │ ├── .modulerc │ │ ├── 3.0 │ │ ├── dir1 │ │ │ └── 1.0 │ │ ├── dir2 │ │ │ └── 2.0 │ │ ├── dir3 │ │ │ └── .modulerc │ │ ├── dir4 │ │ │ ├── .modulerc │ │ │ └── mod4.0 │ │ └── dir5 │ │ │ └── subdir │ │ │ └── mod5.0 │ ├── modulerc │ │ ├── .modulerc │ │ ├── dir1 │ │ │ ├── .modulerc │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ └── dir2 │ │ │ ├── .modulerc │ │ │ ├── 1.0 │ │ │ ├── .modulerc │ │ │ ├── rc1 │ │ │ └── rc2 │ │ │ ├── 2.0 │ │ │ └── 3.0 │ ├── modvirt │ │ ├── .common │ │ ├── .modulerc │ │ └── dir1 │ │ │ └── .modulerc │ ├── plain │ │ ├── dir1 │ │ │ ├── 1.0 │ │ │ └── 2.0 │ │ └── dir2 │ │ │ ├── 1.0 │ │ │ └── 2.0 │ ├── tr2mod │ │ ├── .modulerc │ │ └── dir3 │ │ │ └── .modulerc │ ├── trmod │ │ ├── .modulerc │ │ └── dir3 │ │ │ └── .modulerc │ └── version │ │ ├── .version │ │ ├── dir1 │ │ ├── .version │ │ ├── 1.0 │ │ └── 2.0 │ │ └── dir2 │ │ ├── .version │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── .version │ │ ├── rc1 │ │ └── rc2 │ │ └── 3.0 ├── modulefiles.deps │ ├── a │ ├── aa │ ├── ab │ ├── ac │ ├── ad │ ├── ae │ ├── af │ ├── ag │ ├── ah │ ├── ai │ ├── aj │ ├── ak │ ├── alt │ │ ├── 1 │ │ ├── 7 │ │ ├── 8 │ │ ├── 9 │ │ ├── .modulerc │ │ └── dir │ │ │ ├── 2 │ │ │ ├── 3 │ │ │ ├── 4 │ │ │ ├── 5 │ │ │ ├── 6 │ │ │ └── .modulerc │ ├── alt2 │ │ └── 1 │ ├── b │ ├── bf │ ├── bi │ ├── bj │ ├── bk │ ├── c │ ├── ca │ ├── cb │ ├── cc │ ├── cd │ ├── ce │ ├── cf │ ├── cg │ ├── con1 │ │ ├── 1.1 │ │ └── 1.2 │ ├── con2 │ │ ├── 2.1 │ │ ├── 2.2 │ │ └── 2.3 │ ├── d │ ├── da │ ├── db │ ├── dc │ ├── dd │ ├── de │ ├── df │ ├── dg │ ├── dh │ ├── e │ ├── ea │ ├── eb │ ├── ec │ ├── ed │ ├── ee │ ├── ef │ ├── eg │ ├── f │ ├── f1 │ ├── f10 │ ├── f11 │ ├── f12 │ ├── f13 │ ├── f14 │ ├── f15 │ ├── f16 │ ├── f17 │ ├── f18 │ ├── f19 │ ├── f2 │ ├── f20 │ ├── f21 │ ├── f22 │ │ ├── 1 │ │ └── 2 │ ├── f23 │ ├── f24 │ ├── f25 │ ├── f26 │ ├── f27 │ ├── f27b │ ├── f28 │ ├── f29 │ ├── f3 │ ├── f4 │ ├── f5 │ ├── f6 │ ├── f7 │ ├── f8 │ ├── f9 │ ├── fa │ ├── faa │ ├── fab │ ├── fac │ ├── fad │ ├── fae │ ├── faf │ ├── fai │ ├── faj │ ├── fak │ ├── fal │ ├── fam │ ├── fan │ ├── fb │ ├── fc │ ├── fd │ ├── fe │ ├── ff │ ├── fg │ ├── fh │ ├── fi │ ├── fia │ ├── fj │ ├── fk │ ├── fl │ ├── fm │ ├── fn │ ├── fo │ ├── fp │ ├── fq │ ├── fr │ ├── fs │ ├── ft │ ├── fu │ ├── g │ ├── g1 │ ├── g2 │ ├── g3 │ ├── g4 │ ├── g5 │ ├── ga │ ├── gb │ ├── gc │ ├── gd │ ├── ge │ ├── gf │ ├── gg │ ├── gh │ ├── gi │ ├── gj │ ├── gk │ ├── gl │ ├── gm │ ├── gn │ ├── go │ ├── gp │ ├── gq │ ├── gr │ ├── gs │ ├── gw │ ├── gx │ ├── gy │ ├── gz │ ├── h │ ├── h1 │ ├── h10 │ ├── h11 │ ├── h12 │ ├── h2 │ ├── h20 │ ├── h21 │ ├── h22 │ ├── h23 │ ├── h24 │ ├── h25 │ ├── h3 │ ├── h30 │ ├── h31 │ ├── h32 │ ├── h33 │ ├── h34 │ ├── h35 │ ├── h36 │ ├── h37 │ ├── h38 │ ├── h39 │ ├── h4 │ ├── h40 │ ├── h50 │ ├── h51 │ ├── h52 │ ├── h53 │ ├── h54 │ ├── h55 │ ├── h56 │ ├── h57 │ ├── h58 │ ├── h60 │ ├── h61 │ ├── h62 │ ├── h63 │ ├── h64 │ ├── h65 │ ├── h66 │ ├── h67 │ ├── h68 │ ├── h69 │ ├── h70 │ ├── h71 │ ├── h72 │ ├── h73 │ ├── h74 │ ├── ha │ │ ├── 1 │ │ ├── 2 │ │ └── 3 │ ├── haa │ ├── hab │ ├── hac │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── had │ ├── hae │ ├── hb │ ├── hc │ ├── hd │ ├── he │ ├── hf │ ├── hg │ ├── i │ ├── i1 │ ├── i2 │ ├── i3 │ ├── i3b │ ├── i4 │ ├── i4b │ ├── i5 │ │ ├── 1 │ │ └── 2 │ ├── i6 │ ├── i7 │ ├── ia │ ├── ib │ ├── ibm │ ├── ic │ ├── id │ ├── ie │ ├── if │ ├── ig │ ├── ih │ │ ├── 0 │ │ ├── 1 │ │ └── 2 │ ├── ii │ ├── iim │ ├── ij │ ├── j │ ├── k │ ├── l │ ├── m │ ├── m1 │ ├── m10 │ ├── m11 │ ├── m12 │ ├── m2 │ ├── m3 │ ├── m4 │ ├── m5 │ ├── m6 │ ├── m7 │ ├── ma │ ├── mb │ ├── mbs │ ├── mbt │ ├── mbu │ ├── mc │ ├── md │ ├── me │ ├── mf │ ├── mg │ ├── mh │ ├── mi │ ├── mj │ ├── mk │ ├── ml │ ├── mm │ ├── mn │ ├── mo │ ├── mp │ ├── mq │ ├── mr │ ├── ms │ ├── msf │ ├── mt │ ├── mtf │ ├── mu │ ├── mv │ ├── n │ ├── o │ ├── p │ ├── q │ ├── r │ ├── ra │ ├── raa │ ├── raam │ ├── rab │ ├── rabm │ ├── rac │ ├── racm │ ├── rad │ ├── radm │ ├── rae │ ├── raem │ ├── raf │ ├── rafm │ ├── rag │ ├── ragm │ ├── rah │ ├── rahm │ ├── rb │ ├── rba │ ├── rbb │ ├── rbc │ ├── rbd │ ├── rbe │ ├── rbf │ ├── rbg │ ├── rbh │ ├── rc │ ├── rca │ ├── rcb │ ├── rcc │ ├── rcd │ ├── rce │ ├── rd │ ├── rdc │ ├── rdd │ ├── rde │ ├── re │ ├── rea │ ├── reb │ ├── rec │ ├── red │ ├── ree │ ├── ref │ ├── refcon │ │ ├── 1 │ │ └── 2 │ ├── reg │ ├── reh │ ├── rei │ ├── rej │ ├── rek │ ├── rel │ ├── rem │ ├── ren │ ├── rf │ ├── rfa │ ├── rfb │ ├── rfc │ ├── rfd │ ├── rfe │ ├── rff │ ├── rfg │ ├── rfh │ ├── rfi │ ├── rfj │ ├── rfk │ ├── rfl │ ├── rfm │ ├── rfn │ ├── rg │ ├── rga │ ├── rgb │ ├── rgc │ ├── rgd │ ├── rge │ ├── rgf │ ├── rgg │ ├── rgh │ ├── rgi │ ├── rgj │ ├── rgk │ ├── rgl │ ├── rgm │ ├── rgn │ ├── rh │ ├── ri │ ├── rj │ ├── rk │ ├── rl │ ├── rm │ ├── rn │ ├── ro │ ├── rq │ ├── rr │ ├── rs │ ├── s │ ├── swa │ ├── swaa │ │ ├── 2 │ │ │ ├── 0 │ │ │ ├── 2 │ │ │ └── 8 │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.4 │ │ ├── 3.0 │ │ ├── 3.2 │ │ └── 3.8 │ ├── swab │ ├── swb │ ├── swc │ ├── swd │ ├── swe │ ├── swf │ ├── swg │ │ ├── 0 │ │ ├── 1 │ │ └── 2 │ ├── swh │ ├── swi │ ├── swj │ ├── swk │ ├── swl │ ├── swm │ ├── swn │ ├── t │ ├── u │ ├── un │ │ ├── 1 │ │ ├── 2 │ │ └── 3 │ ├── una │ ├── unb │ ├── unc │ ├── und │ ├── vmod1 │ │ ├── 1 │ │ └── 2 │ ├── vmod2 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ └── vmod3 │ │ ├── 1 │ │ └── 2 ├── modulefiles.indepth │ ├── deepA │ │ ├── 1 │ │ │ └── notamod │ │ ├── 2 │ │ │ └── 1 │ │ │ │ └── notamod │ │ └── 4 │ │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── notamod │ │ │ ├── 2 │ │ │ │ ├── 1 │ │ │ │ └── 3 │ │ │ └── 3 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── .modulerc │ │ │ └── .modulerc │ ├── mod0 │ ├── mod1 │ │ ├── 1 │ │ └── 2 │ ├── mod10 │ ├── mod11 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── mod2 │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── mod3 │ │ └── .modulerc │ ├── mod30 │ │ ├── 2 │ │ └── .1 │ ├── mod4 │ │ └── .1 │ ├── mod5 │ │ ├── .common │ │ └── .modulerc │ ├── mod6 │ │ ├── 1 │ │ │ └── notamod │ │ ├── 2 │ │ │ └── 1 │ │ │ │ └── notamod │ │ └── 3 │ │ │ └── 1 │ │ │ ├── 1 │ │ │ └── notamod │ │ │ └── 2 │ │ │ └── 1 │ ├── mod7 │ │ ├── 1 │ │ │ └── notamod │ │ ├── 2 │ │ │ └── 1 │ │ │ │ └── notamod │ │ ├── 3 │ │ │ └── 1 │ │ │ │ ├── 1 │ │ │ │ └── notamod │ │ │ │ └── 2 │ │ │ │ └── notamod │ │ └── 4 │ │ │ └── 1 │ ├── mod8 │ │ ├── 1 │ │ │ └── notamod │ │ ├── 2 │ │ │ └── 1 │ │ │ │ └── notamod │ │ ├── 3 │ │ │ └── 1 │ │ │ │ ├── 1 │ │ │ │ └── notamod │ │ │ │ └── 2 │ │ │ │ └── notamod │ │ └── 4 │ │ │ └── .modulerc │ ├── mod9 │ │ ├── 1 │ │ │ └── notamod │ │ ├── 2 │ │ │ └── 1 │ │ │ │ └── notamod │ │ ├── 3 │ │ │ ├── 1 │ │ │ │ ├── 1 │ │ │ │ │ └── notamod │ │ │ │ └── 2 │ │ │ │ │ └── notamod │ │ │ ├── 2 │ │ │ └── .version │ │ └── 4 │ │ │ ├── .common │ │ │ └── .modulerc │ ├── modv │ │ ├── .common │ │ └── .modulerc │ ├── notmod1 │ │ └── notamod │ ├── notmod2 │ │ └── 1 │ │ │ └── notamod │ ├── notmod3 │ │ └── 1 │ │ │ ├── 1 │ │ │ └── .notamod │ │ │ └── 2 │ └── notmod4 │ │ ├── 1 │ │ └── 1 │ │ │ └── 1 │ │ │ └── notamod │ │ └── 2 ├── modulefiles.memcache │ ├── foo │ │ ├── 1 │ │ └── 2 │ ├── foo1 │ │ ├── 1 │ │ └── 2 │ ├── look │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 5 │ │ ├── 6 │ │ ├── 7 │ │ └── 8 │ └── sp cial │ │ └── 1 ├── modulefiles.path1 │ ├── cross │ │ ├── .modulerc │ │ ├── 3.0 │ │ └── 4.0 │ ├── dcross │ │ ├── .modulerc │ │ ├── 4.0 │ │ └── dir1 │ │ │ └── 1.0 │ ├── dvcross │ │ ├── .base │ │ └── .modulerc │ ├── fodcross │ │ └── 2.7.13 │ │ │ └── sub-13 │ ├── lcross │ │ ├── 1 │ │ ├── 6 │ │ └── 10 │ ├── loc_dv10 │ │ ├── .version │ │ └── 1.1 │ ├── novercross │ ├── othcross │ │ ├── .modulerc │ │ └── 1.0 │ └── vcross │ │ ├── .base │ │ └── .modulerc ├── modulefiles.path2 │ ├── cross │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 6.0 │ ├── dcross │ │ ├── dir1 │ │ │ ├── .modulerc │ │ │ └── 2.0 │ │ └── dir2 │ │ │ └── 1.0 │ ├── dvcross │ │ ├── .base │ │ └── .modulerc │ ├── fodcross │ │ └── 2.7.13 │ ├── lcross │ │ ├── 2 │ │ ├── 4 │ │ ├── 5 │ │ ├── 7 │ │ └── 11 │ ├── loc_dv10 │ │ ├── .version │ │ └── 1.2 │ ├── novercross │ └── vcross │ │ ├── .base │ │ └── .modulerc ├── modulefiles.path3 │ ├── cross │ │ ├── .modulerc │ │ ├── 2.0 │ │ └── 5.0 │ ├── dcross │ │ ├── .modulerc │ │ ├── 5.0 │ │ ├── dir1 │ │ │ └── 3.0 │ │ └── dir3 │ │ │ └── 1.0 │ ├── dvcross │ │ ├── .base │ │ └── .modulerc │ ├── lcross │ │ ├── 3 │ │ ├── 8 │ │ └── 12 │ ├── novercross │ ├── othcross │ │ ├── .modulerc │ │ └── 2.0 │ └── vcross │ │ ├── .base │ │ └── .modulerc ├── modulefiles.rc │ ├── .modulerc │ ├── .version │ ├── bar │ │ ├── 1 │ │ ├── 2 │ │ └── .modulerc │ ├── foo │ │ ├── .common │ │ └── .modulerc │ └── plain ├── modulefiles.spider1 │ ├── .modulerc │ └── moda │ │ ├── 1 │ │ └── 2 ├── modulefiles.spider2 │ ├── .modulerc │ └── modb │ │ ├── 1 │ │ └── 2 ├── modulefiles.spider3 │ └── modc │ │ ├── 1 │ │ └── 2 ├── modulefiles │ ├── .hidden │ │ └── 1.0 │ ├── RCS │ │ └── 1.0 │ ├── README │ ├── alias │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── 3.0 │ ├── append │ │ ├── 0.1 │ │ ├── 0.2 │ │ ├── 0.3 │ │ ├── 0.4 │ │ ├── 0.5 │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5 │ │ ├── 1.6 │ │ ├── 1.7 │ │ ├── 1.8 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 2.3 │ │ ├── 2.4 │ │ ├── 4.0 │ │ ├── 4.1 │ │ ├── 5.0 │ │ ├── 6.0 │ │ ├── 7.0 │ │ └── 8.0 │ ├── averssort │ │ └── .modulerc │ ├── bad │ │ ├── .modulerc │ │ ├── after │ │ └── before │ ├── bad2 │ │ ├── body │ │ └── proc │ ├── break │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 3.0 │ │ ├── 4.0 │ │ ├── 5.0 │ │ └── 6.0 │ ├── chdir │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 3.0 │ │ └── 4.0 │ ├── coll │ │ ├── a │ │ ├── b │ │ ├── c │ │ └── d │ ├── conflict │ │ ├── full │ │ ├── fullpath │ │ ├── module │ │ └── relpath │ ├── continue │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 3.0 │ │ ├── 4.0 │ │ ├── 5.0 │ │ └── 6.0 │ ├── dirmodalias │ │ ├── .modulerc │ │ └── 1.0 │ ├── dirmodvirt │ │ ├── .modulerc │ │ └── 1.0 │ ├── empty │ │ └── 1.0 │ ├── emptydir │ │ └── .ignored │ ├── eschars │ │ └── 1.0 │ ├── exit │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 3.0 │ │ └── 4.0 │ ├── function │ │ ├── 1.0 │ │ └── 2.0 │ ├── getenv │ │ ├── 0.6 │ │ └── 1.0 │ ├── help │ │ └── 2.0 │ ├── info │ │ ├── .modulerc │ │ ├── command │ │ ├── commandexp │ │ ├── isavail │ │ ├── isloaded │ │ ├── issaved │ │ ├── isused │ │ ├── loaded │ │ ├── mode1 │ │ ├── mode2 │ │ ├── mode3 │ │ ├── mode4 │ │ ├── mode5 │ │ ├── mode6 │ │ ├── name │ │ ├── others │ │ ├── shells │ │ ├── shellsexp │ │ ├── specified │ │ ├── type │ │ ├── user │ │ └── userexp │ ├── inforc │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── load │ │ ├── 10 │ │ ├── 11 │ │ ├── 12 │ │ ├── 13 │ │ ├── 14 │ │ ├── 15 │ │ ├── 16 │ │ ├── 17 │ │ ├── 18 │ │ ├── 19 │ │ ├── 20 │ │ ├── 21 │ │ ├── 22 │ │ ├── 23 │ │ ├── 24 │ │ ├── 25 │ │ ├── 26 │ │ ├── 27 │ │ ├── 28 │ │ ├── 29 │ │ ├── 30 │ │ ├── .version │ │ ├── 00 │ │ └── all │ ├── loc_def │ │ ├── default │ │ └── truedef │ ├── loc_dv1 │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── 3.0 │ ├── loc_dv2 │ │ ├── .version │ │ ├── 1.0 │ │ └── 2.0 │ ├── loc_dv3 │ │ ├── .version │ │ ├── 1.0 │ │ └── 2.0 │ ├── loc_dv4 │ │ ├── .version │ │ ├── 1.0 │ │ └── 2.0 │ ├── loc_dv6 │ │ ├── 1.0 │ │ └── 2.0 │ │ │ └── 1.0 │ ├── loc_dv7 │ │ ├── .version │ │ ├── 1.0 │ │ ├── 2.0 │ │ │ └── 1.0 │ │ └── 3.0 │ ├── loc_dv8 │ │ ├── .version │ │ ├── 1.0 │ │ └── 2.0 │ ├── loc_dv9 │ │ ├── .version │ │ ├── 1.0 │ │ └── 2.0 │ ├── loc_dvv1 │ │ ├── .common │ │ ├── .modulerc │ │ └── .version │ ├── loc_fq │ │ ├── 1.0 │ │ └── 2.0 │ ├── loc_rc010 │ │ ├── .1.0 │ │ ├── .modulerc │ │ ├── 2.0 │ │ ├── dir │ │ │ ├── .4.0 │ │ │ ├── sub1 │ │ │ │ └── notamod │ │ │ └── sub2 │ │ │ │ └── incompat │ │ ├── subdir │ │ │ ├── .hidsub │ │ │ │ └── 3.0 │ │ │ ├── .modulerc │ │ │ └── .subdir │ │ │ │ └── 3.0 │ │ └── wrong │ ├── loc_rc1 │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── loc_rc2 │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── loc_rc3 │ │ ├── .modulerc │ │ ├── 0.0 │ │ │ └── .notmodfile │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── 3.0 │ ├── loc_rc4 │ │ ├── .modulerc │ │ ├── .version │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── 3.0 │ ├── loc_rc5 │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── loc_rc6 │ │ ├── .modulerc │ │ ├── 0.9 │ │ └── 1.2 │ ├── loc_rc7 │ │ ├── .modulerc │ │ ├── 0.9 │ │ └── 1.2 │ ├── loc_rc8 │ │ ├── .2.0 │ │ ├── .modulerc │ │ ├── .subdir │ │ │ └── 4.0 │ │ └── 1.0 │ ├── loc_rc9 │ │ └── .1.0 │ ├── loc_rcv1 │ │ ├── .base │ │ ├── .common │ │ └── .modulerc │ ├── loc_rcv2 │ │ ├── .common │ │ └── .modulerc │ ├── loc_sym │ │ ├── .common │ │ ├── 1.0 │ │ ├── alias1 │ │ ├── alias10 │ │ ├── alias11 │ │ ├── alias2 │ │ ├── alias3 │ │ ├── alias4 │ │ ├── alias5 │ │ ├── alias6 │ │ ├── alias7 │ │ ├── alias8 │ │ ├── alias9 │ │ ├── exec1 │ │ ├── exec2 │ │ ├── exec3 │ │ ├── getvers1 │ │ ├── getvers10 │ │ ├── getvers2 │ │ ├── getvers3 │ │ ├── getvers4 │ │ ├── getvers5 │ │ ├── getvers6 │ │ ├── getvers7 │ │ ├── getvers8 │ │ ├── getvers9 │ │ ├── versinf1 │ │ ├── versinf2 │ │ ├── versinf3 │ │ ├── versinf4 │ │ ├── versinf5 │ │ ├── versinf6 │ │ ├── versinf7 │ │ ├── version1 │ │ ├── version10 │ │ ├── version11 │ │ ├── version12 │ │ ├── version13 │ │ ├── version14 │ │ ├── version15 │ │ ├── version16 │ │ ├── version17 │ │ ├── version18 │ │ ├── version19 │ │ ├── version2 │ │ ├── version20 │ │ ├── version21 │ │ ├── version22 │ │ ├── version23 │ │ ├── version24 │ │ ├── version25 │ │ ├── version26 │ │ ├── version3 │ │ ├── version4 │ │ ├── version5 │ │ ├── version6 │ │ ├── version7 │ │ ├── version8 │ │ └── version9 │ ├── loc_tr │ │ ├── .modulerc │ │ ├── 1.0 │ │ ├── 2.0 │ │ └── 3.0 │ ├── loc_virt1 │ │ ├── .common │ │ └── .modulerc │ ├── loc_virt2 │ │ ├── .modulerc │ │ └── 2.0 │ ├── log │ │ ├── badfac │ │ ├── err_both_1 │ │ ├── err_both_2 │ │ ├── err_file │ │ └── err_syslog │ ├── mcookie │ │ └── 1 │ ├── mcookierc │ │ ├── 1 │ │ └── .modulerc │ ├── modbad │ │ ├── append-path │ │ ├── autoinit │ │ ├── clear │ │ ├── config │ │ ├── edit │ │ ├── empty │ │ ├── foo │ │ ├── help │ │ ├── info-loaded │ │ ├── is-avail │ │ ├── is-loaded │ │ ├── is-saved │ │ ├── is-used │ │ ├── path │ │ ├── paths │ │ ├── prepend-path │ │ ├── remove-path │ │ └── sh-to-mod │ ├── module │ │ ├── .ignored │ │ ├── 2.0 │ │ ├── bad │ │ ├── empty │ │ ├── err │ │ ├── ignored~ │ │ ├── lbad │ │ ├── lerr │ │ ├── lunk │ │ ├── meta │ │ ├── relpath │ │ └── unk │ ├── modvar │ │ ├── modfile │ │ └── submodfile │ ├── prepend │ │ ├── 0.1 │ │ ├── 0.2 │ │ ├── 0.3 │ │ ├── 0.4 │ │ ├── 0.5 │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.10 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5 │ │ ├── 1.6 │ │ ├── 1.7 │ │ ├── 1.8 │ │ ├── 1.9 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 2.3 │ │ ├── 2.4 │ │ ├── 3.0 │ │ ├── 3.1 │ │ ├── 4.0 │ │ └── 8.0 │ ├── prereq │ │ ├── full │ │ ├── fullpath │ │ ├── module │ │ ├── orlist │ │ └── relpath │ ├── puts │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 5 │ │ ├── 6 │ │ ├── 7 │ │ ├── 8 │ │ └── 9 │ ├── recurs │ │ ├── modA │ │ └── modB │ ├── remove │ │ ├── 0.3 │ │ ├── 0.4 │ │ ├── 0.5 │ │ ├── 1.0 │ │ ├── 1.3 │ │ ├── 1.4 │ │ ├── 1.5 │ │ ├── 1.6 │ │ ├── 1.7 │ │ ├── 1.8 │ │ ├── 2.0 │ │ ├── 2.3 │ │ ├── 2.4 │ │ ├── 3.0 │ │ ├── 3.1 │ │ ├── 4.0 │ │ ├── 4.1 │ │ ├── 4.2 │ │ ├── 5.0 │ │ └── 8.0 │ ├── setenv │ │ ├── 0.6 │ │ ├── 0.7.1 │ │ ├── 0.7.2 │ │ ├── 0.8 │ │ └── 1.0 │ ├── source │ │ ├── 0.9 │ │ ├── 1.0 │ │ ├── 1.1 │ │ └── 1.2 │ ├── spread │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 3.0 │ │ ├── 4.0 │ │ ├── 5.0 │ │ ├── 6.0 │ │ ├── 7.0 │ │ └── 8.0 │ ├── spreadrc │ │ ├── .modulerc │ │ ├── dir1 │ │ │ ├── .modulerc │ │ │ └── 1.0 │ │ ├── dir2 │ │ │ ├── .modulerc │ │ │ └── 1.0 │ │ ├── dir3 │ │ │ ├── .modulerc │ │ │ └── 1.0 │ │ ├── dir4 │ │ │ ├── .modulerc │ │ │ └── 1.0 │ │ ├── dir5 │ │ │ ├── .modulerc │ │ │ └── 1.0 │ │ ├── dir6 │ │ │ ├── .modulerc │ │ │ └── 1.0 │ │ ├── dir7 │ │ │ ├── .modulerc │ │ │ └── 1.0 │ │ └── dir8 │ │ │ ├── .modulerc │ │ │ └── 1.0 │ ├── symlink │ ├── symlink2 │ ├── symlink3 │ ├── system │ │ ├── .modulerc │ │ ├── 1.0 │ │ └── 2.0 │ ├── test │ │ ├── 1.0 │ │ ├── 1.2 │ │ └── 2.0 │ ├── tr2_loc │ │ └── .modulerc │ ├── tr_loc │ │ └── .modulerc │ ├── trace │ │ ├── all_off │ │ └── all_on │ ├── uname │ │ ├── cache │ │ ├── domain │ │ ├── machine │ │ ├── nodename │ │ ├── release │ │ ├── sysname │ │ ├── unk │ │ └── version │ ├── unsetenv │ │ ├── 0.6 │ │ ├── 0.8 │ │ ├── 0.9 │ │ └── 1.0 │ ├── use │ │ ├── .version │ │ ├── 1.0 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 3.0 │ │ ├── 3.1 │ │ ├── 3.2 │ │ ├── 4.0 │ │ └── 4.1 │ ├── user │ │ ├── adv │ │ ├── advanced │ │ ├── exp │ │ ├── expert │ │ ├── nov │ │ ├── novice │ │ └── undef │ ├── verbose │ │ ├── msg │ │ ├── off │ │ ├── on │ │ └── undef │ ├── versions │ │ ├── 1.1 │ │ ├── 1.2 │ │ └── 1.3 │ ├── verssort │ │ ├── 1 │ │ ├── 1.10 │ │ ├── 1.2.1 │ │ ├── 1.2.4 │ │ ├── 1.8-2015-12-01 │ │ └── 1.8-2016-02-01 │ ├── whatis │ │ ├── lines │ │ ├── multiple │ │ ├── none │ │ ├── single │ │ └── string │ └── x-resource │ │ └── 1 ├── modules.00-init │ ├── 005-init_ts.exp │ ├── 006-procs.exp │ ├── 010-environ.exp │ ├── 015-version.exp │ ├── 030-shells.exp │ ├── 050-modpath.exp │ ├── 060-build_cache.exp │ ├── 070-command.exp │ ├── 071-args.exp │ ├── 085-save_test_env.exp │ ├── 090-switches.exp │ ├── 100-pager.exp │ ├── 110-quar.exp │ ├── 120-siteconfig.exp │ ├── 130-auto_handling.exp │ ├── 140-color.exp │ ├── 150-access-init.exp │ ├── 160-multilib.exp │ ├── 170-cwd.exp │ └── 180-logger.exp ├── modules.10-use │ ├── 010-init_ts.exp │ ├── 030-use.exp │ ├── 031-append.exp │ ├── 032-prepend.exp │ ├── 040-load-use.exp │ ├── 070-unuse.exp │ ├── 080-access-use.exp │ ├── 090-bad.exp │ └── 999-cleanup.exp ├── modules.20-locate │ ├── 010-init_ts.exp │ ├── 020-fqual.exp │ ├── 030-defvers.exp │ ├── 031-defvers2.exp │ ├── 035-defname.exp │ ├── 038-defcontext.exp │ ├── 040-alias.exp │ ├── 043-virtual.exp │ ├── 045-symvers.exp │ ├── 046-getsym.exp │ ├── 047-symerrs.exp │ ├── 048-symexec.exp │ ├── 050-locrc.exp │ ├── 055-locrcerrs.exp │ ├── 057-mcookie.exp │ ├── 060-rc.exp │ ├── 065-rcerrs.exp │ ├── 066-modulepath-rc.exp │ ├── 067-hidden.exp │ ├── 068-transitive.exp │ ├── 069-cross.exp │ ├── 070-homerc.exp │ ├── 075-symlink.exp │ ├── 080-access.exp │ ├── 081-access-rc.exp │ ├── 090-memcache.exp │ ├── 100-wspace.exp │ ├── 110-hide.exp │ ├── 111-hide-hard.exp │ ├── 111-hide-soft.exp │ ├── 112-hide-user-group.exp │ ├── 113-hide-all-opt.exp │ ├── 114-hide-before-after.exp │ ├── 115-forbid.exp │ ├── 116-forbid-before-after.exp │ ├── 117-forbid-user-group.exp │ ├── 118-hidden-loaded.exp │ ├── 119-hide-cascading.exp │ ├── 120-moduleversion.exp │ ├── 130-mcookie_check_eval.exp │ ├── 140-hide-full-path.exp │ ├── 141-forbid-full-path.exp │ ├── 150-lmod-hide.exp │ ├── 160-glob-path.exp │ └── 999-cleanup.exp ├── modules.30-cache │ ├── 010-init_ts.exp │ ├── 020-cacheclear.exp │ ├── 030-cachebuild.exp │ ├── 031-cachebuild-full.exp │ ├── 032-cachebuild-limited-access.exp │ ├── 040-cache-use.exp │ ├── 041-cache-interp.exp │ ├── 042-cache-error.exp │ ├── 043-cache-use-limited-access.exp │ ├── 044-cache-use-limited-access-inconsistent.exp │ ├── 045-cache-use-misc-inconsistent.exp │ ├── 050-ignore-cache.exp │ ├── 051-cache-buffer-bytes.exp │ ├── 052-cache-expiry-secs.exp │ └── 999-cleanup.exp ├── modules.50-cmds │ ├── 010-init_ts.exp │ ├── 015-use.exp │ ├── 017-use-undo.exp │ ├── 020-setenv.exp │ ├── 022-setenv-eschars.exp │ ├── 025-setenv-undo.exp │ ├── 028-setenv-refcount.exp │ ├── 029-setenv-env.exp │ ├── 030-unsetenv.exp │ ├── 035-unsetenv-undo.exp │ ├── 036-unsetenv-x.exp │ ├── 038-unsetenv-refcount.exp │ ├── 039-unsetenv-env.exp │ ├── 040-append.exp │ ├── 042-append-delim.exp │ ├── 045-append-undo.exp │ ├── 047-app-del-undo.exp │ ├── 049-append-env.exp │ ├── 050-prepend.exp │ ├── 052-prepend-delim.exp │ ├── 055-prepend-undo.exp │ ├── 057-pre-del-undo.exp │ ├── 059-prepend-env.exp │ ├── 060-remove.exp │ ├── 062-remove-delim.exp │ ├── 065-remove-undo.exp │ ├── 069-remove-env.exp │ ├── 075-alias.exp │ ├── 076-alias-sub.exp │ ├── 077-alias-undo.exp │ ├── 078-refresh.exp │ ├── 080-info-name.exp │ ├── 081-info-user.exp │ ├── 082-info-user-exp.exp │ ├── 083-info-mode.exp │ ├── 084-info-mode-exp.exp │ ├── 085-info-flags.exp │ ├── 086-info-shells.exp │ ├── 087-info-shells-exp.exp │ ├── 088-info-isloaded.exp │ ├── 089-info-type.exp │ ├── 090-uname-proc.exp │ ├── 095-uname.exp │ ├── 100-loglevel.exp │ ├── 101-badfac.exp │ ├── 105-trace.exp │ ├── 110-verbose.exp │ ├── 115-verbose-msg.exp │ ├── 120-prereq-full.exp │ ├── 121-prereq-module.exp │ ├── 122-prereq-fullpath.exp │ ├── 130-conflict-full.exp │ ├── 131-conflict-module.exp │ ├── 132-conflict-fullpath.exp │ ├── 140-system.exp │ ├── 150-module.exp │ ├── 151-module-onlytop.exp │ ├── 152-module-emptyarg.exp │ ├── 170-swap.exp │ ├── 172-swap-app-delim.exp │ ├── 173-swap-app-delim.exp │ ├── 175-swap2.exp │ ├── 177-swap-prep-delim.exp │ ├── 178-swap-prep-delim.exp │ ├── 180-unload.exp │ ├── 190-load.exp │ ├── 195-load-recurs.exp │ ├── 197-load-lots.exp │ ├── 200-break.exp │ ├── 210-exit.exp │ ├── 220-continue.exp │ ├── 230-loop.exp │ ├── 240-chdir.exp │ ├── 250-x-resource.exp │ ├── 260-getenv.exp │ ├── 269-getenv-env.exp │ ├── 280-info-specified.exp │ ├── 281-info-modulerc.exp │ ├── 282-info-command.exp │ ├── 283-info-command-exp.exp │ ├── 284-info-others.exp │ ├── 285-info-loaded.exp │ ├── 286-info-username.exp │ ├── 287-info-usergroups.exp │ ├── 288-info-tags.exp │ ├── 300-interp.exp │ ├── 301-interp-command.exp │ ├── 302-interp-cascaded.exp │ ├── 310-puts.exp │ ├── 311-puts-prestdout.exp │ ├── 312-puts-log.exp │ ├── 320-is-saved.exp │ ├── 321-is-used.exp │ ├── 322-is-avail.exp │ ├── 340-modvar.exp │ ├── 350-allin.exp │ ├── 359-allin-env.exp │ ├── 360-restoreenv.exp │ ├── 370-deps-bis.exp │ ├── 370-deps-fullpath.exp │ ├── 370-deps.exp │ ├── 371-deps2.exp │ ├── 372-deps3.exp │ ├── 373-deps4.exp │ ├── 374-deps5.exp │ ├── 375-deps6.exp │ ├── 375-order.exp │ ├── 376-deps7.exp │ ├── 376-switch-change-vers.exp │ ├── 376-switch.exp │ ├── 377-cyclic.exp │ ├── 377-deps8.exp │ ├── 377-error.exp │ ├── 377-opposite.exp │ ├── 378-sametarget.exp │ ├── 379-module-unload.exp │ ├── 380-altname.exp │ ├── 390-function.exp │ ├── 391-function-undo.exp │ ├── 400-source-sh.exp │ ├── 401-source-sh-eval.exp │ ├── 402-source-sh-ignore.exp │ ├── 410-modvar.exp │ ├── 420-versioncmp.exp │ ├── 430-implicit-req.exp │ ├── 431-not-req.exp │ ├── 440-module-tag.exp │ ├── 441-module-tag-full-path.exp │ ├── 450-hidden-loaded.exp │ ├── 460-sticky.exp │ ├── 461-super-sticky.exp │ ├── 462-sticky-corner.exp │ ├── 463-sticky-full-path.exp │ ├── 464-sticky_purge.exp │ ├── 465-tag-opt.exp │ ├── 467-keep-loaded.exp │ ├── 470-variant.exp │ ├── 471-variant-unload.exp │ ├── 472-getvariant.exp │ ├── 473-variant-prereq.exp │ ├── 474-variant-conflict.exp │ ├── 475-variant-tag.exp │ ├── 476-variant-aliassym.exp │ ├── 477-variant-info.exp │ ├── 478-variant-version.exp │ ├── 479-variant-boolean.exp │ ├── 490-try-load.exp │ ├── 500-remove-on-load.exp │ ├── 501-append-on-unload.exp │ ├── 502-prepend-on-unload.exp │ ├── 503-noop-on-unload.exp │ ├── 504-unset-on-unload.exp │ ├── 505-set-if-undef.exp │ ├── 510-add-property.exp │ ├── 511-remove-property.exp │ ├── 512-extensions.exp │ ├── 513-prereq-any.exp │ ├── 514-require-fullname.exp │ ├── 515-depends-on.exp │ ├── 516-prereq-all.exp │ ├── 517-always-load.exp │ ├── 518-load-any.exp │ ├── 519-family.exp │ ├── 520-pushenv.exp │ ├── 521-depends-on-any.exp │ ├── 522-haveDynamicMPATH.exp │ ├── 530-module-list.exp │ ├── 540-complete.exp │ ├── 541-uncomplete.exp │ ├── 550-optional-opt.exp │ ├── 560-siteconfig-interp.exp │ ├── 570-modulepath-label.exp │ ├── 580-unique_name_loaded.exp │ ├── 590-abort_on_error-load.exp │ ├── 591-abort_on_error-load-any.exp │ ├── 592-abort_on_error-try-load.exp │ ├── 593-abort_on_error-misc.exp │ ├── 600-unload-force.exp │ ├── 610-abort_on_error-unload.exp │ ├── 611-abort_on_error-ml_unload.exp │ ├── 612-abort_on_error-ml_mix.exp │ ├── 613-abort_on_error-purge.exp │ ├── 614-abort_on_error-reload.exp │ ├── 615-abort_on_error-side_effects.exp │ ├── 616-abort_on_error-switch.exp │ ├── 620-source_cache.exp │ ├── 630-append-path-eq-delim.exp │ ├── 631-prepend-path-eq-delim.exp │ ├── 632-remove-path-eq-delim.exp │ ├── 640-modulepath-opt.exp │ ├── 641-modulepath-loaded.exp │ ├── 650-lsb-release.exp │ ├── 660-conflict_unload.exp │ ├── 670-loadable_depre.exp │ ├── 680-use_modulepath.exp │ ├── 690-module-help.exp │ ├── 700-module-warn.exp │ └── 999-cleanup.exp ├── modules.51-scan │ ├── 010-init_ts.exp │ ├── 020-avail_output-variant.exp │ ├── 021-avail_output-variant-sgr.exp │ ├── 030-scan_eval-avail.exp │ ├── 031-scan_eval-whatis.exp │ ├── 032-scan_eval-paths.exp │ ├── 033-scan_eval-spider.exp │ ├── 040-extra_spec.exp │ ├── 041-extra_spec-env.exp │ ├── 042-extra_spec-conflict.exp │ ├── 043-extra_spec-require.exp │ ├── 044-extra_spec-tag.exp │ ├── 045-extra_spec-use.exp │ └── 999-cleanup.exp ├── modules.60-initx │ ├── 010-init_ts.exp │ ├── 015-list.exp │ ├── 020-add.exp │ ├── 030-switch.exp │ ├── 040-prepend.exp │ ├── 050-rm.exp │ ├── 060-2nd.exp │ ├── 080-access-initx.exp │ └── 999-cleanup.exp ├── modules.61-coll │ ├── 010-init_ts.exp │ ├── 020-savelist.exp │ ├── 021-savelist-search.exp │ ├── 030-save.exp │ ├── 040-restore.exp │ ├── 050-saverm.exp │ ├── 060-saveshow.exp │ ├── 080-access-coll.exp │ └── 999-cleanup.exp ├── modules.70-maint │ ├── 010-init_ts.exp │ ├── 030-purge.exp │ ├── 040-list.exp │ ├── 043-listno.exp │ ├── 045-listlong.exp │ ├── 048-listlongno.exp │ ├── 050-whatis-load.exp │ ├── 055-whatis.exp │ ├── 056-whatis-nullpath.exp │ ├── 060-apropos.exp │ ├── 070-display.exp │ ├── 080-help.exp │ ├── 085-test.exp │ ├── 090-source.exp │ ├── 100-path.exp │ ├── 110-paths.exp │ ├── 120-autoinit.exp │ ├── 130-aliases.exp │ ├── 140-multiargs.exp │ ├── 150-append-path.exp │ ├── 151-prepend-path.exp │ ├── 152-remove-path.exp │ ├── 153-is-loaded.exp │ ├── 154-is-saved.exp │ ├── 155-is-used.exp │ ├── 156-is-avail.exp │ ├── 157-info-loaded.exp │ ├── 170-contact.exp │ ├── 180-reload.exp │ ├── 190-emptyarg.exp │ ├── 200-errdisp.exp │ ├── 210-clear.exp │ ├── 220-config.exp │ ├── 230-verbosity.exp │ ├── 231-verbose2.exp │ ├── 240-icase.exp │ ├── 250-nan.exp │ ├── 260-extended_default.exp │ ├── 270-adv_version_spec.exp │ ├── 271-adv_version_spec-in.exp │ ├── 272-adv_version_spec-range.exp │ ├── 273-adv_version_spec-space.exp │ ├── 274-adv_version_spec-autosym.exp │ ├── 275-adv_version_spec-loaded.exp │ ├── 276-adv_version_spec-rangein.exp │ ├── 280-ml.exp │ ├── 290-json.exp │ ├── 300-err_stack.exp │ ├── 310-sh-to-mod.exp │ ├── 311-eval-sh-to-mod.exp │ ├── 320-tags.exp │ ├── 321-tag_abbrev.exp │ ├── 322-tag-sgr.exp │ ├── 323-tag-hide_auto_loaded.exp │ ├── 330-large-file.exp │ ├── 340-output-key.exp │ ├── 350-term_width.exp │ ├── 360-avail_output.exp │ ├── 361-list_output.exp │ ├── 362-spider_output.exp │ ├── 370-variant.exp │ ├── 371-variant-msg.exp │ ├── 372-variant-display.exp │ ├── 373-variant-help.exp │ ├── 374-variant-test.exp │ ├── 375-variant-whatis.exp │ ├── 376-variant-tag.exp │ ├── 377-variant-shortcut.exp │ ├── 380-edit.exp │ ├── 390-state.exp │ ├── 400-list-search.exp │ ├── 410-protected_envvars.exp │ ├── 410-timer.exp │ ├── 420-lint.exp │ ├── 430-mod-to-sh.exp │ ├── 440-reset.exp │ ├── 450-stash.exp │ ├── 451-stashpop.exp │ ├── 452-stashrm.exp │ ├── 453-stashshow.exp │ ├── 454-stashclear.exp │ ├── 455-stashlist.exp │ ├── 456-stash-restore.exp │ ├── 457-stash-savelist.exp │ └── 999-cleanup.exp ├── modules.80-deep │ ├── 010-init_ts.exp │ ├── 020-load-deep.exp │ ├── 021-unload.exp │ ├── 022-switch.exp │ ├── 030-display.exp │ ├── 040-list-deep.exp │ ├── 050-whatis.exp │ ├── 068-transitive-deep.exp │ ├── 080-access-deep.exp │ ├── 090-deepvirt.exp │ └── 999-cleanup.exp ├── modules.90-avail │ ├── 010-init_ts.exp │ ├── 020-single.exp │ ├── 030-multiple.exp │ ├── 040-wild.exp │ ├── 050-long.exp │ ├── 060-empty.exp │ ├── 070-full.exp │ ├── 080-noindepth.exp │ ├── 090-dup-modpath.exp │ ├── 100-tags.exp │ └── 999-cleanup.exp ├── modules.91-sort │ ├── 010-init_ts.exp │ ├── 020-avail.exp │ ├── 030-whatis.exp │ ├── 040-load-sort.exp │ └── 999-cleanup.exp ├── modules.92-spider │ ├── 010-init_ts.exp │ ├── 020-spider-single.exp │ ├── 030-spider-multiple.exp │ ├── 040-spider-wild.exp │ ├── 050-spider-long.exp │ ├── 060-spider-empty.exp │ ├── 070-spider-full.exp │ ├── 080-spider-noindepth.exp │ ├── 090-spider-modpath.exp │ ├── 100-spider-tags.exp │ └── 999-cleanup.exp ├── modules.95-version │ ├── 010-init_ts.exp │ ├── 020-load-version.exp │ ├── 020-unload.exp │ ├── 022-load2.exp │ ├── 022-unload2.exp │ ├── 040-xgetenv.exp │ ├── 050-fullpathentry.exp │ ├── 090-dup-modpath-version.exp │ └── 999-cleanup.exp ├── modules.99-finish │ └── 999-cleanup.exp ├── not_installed ├── stdin_to_file ├── stty ├── systest ├── systest0 ├── systest1 ├── systest2 └── virttargets │ ├── loc_rcv │ └── loc_virt └── version.inc.in /doc/example/compiler-etc-dependencies/fake-sw-root/bar/4.7/1/README.txt: -------------------------------------------------------------------------------- 1 | ../../../openmpi/4.0/1/README.txt -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/bar/4.7/1/gnu-8.2.0-simd-avx: -------------------------------------------------------------------------------- 1 | ../gcc/8.2.0/avx -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/bar/4.7/1/gnu-8.2.0-simd-sse4.1: -------------------------------------------------------------------------------- 1 | ../gcc/8.2.0/sse4.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/bar/5.4/1/README.txt: -------------------------------------------------------------------------------- 1 | ../../../openmpi/4.0/1/README.txt -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/bar/5.4/1/gnu-9.1.0-simd-avx: -------------------------------------------------------------------------------- 1 | ../gcc/9.1.0/avx -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/bar/5.4/1/gnu-9.1.0-simd-avx2: -------------------------------------------------------------------------------- 1 | ../gcc/9.1.0/avx2 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/README.txt: -------------------------------------------------------------------------------- 1 | ../../../openmpi/4.0/1/README.txt -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/gnu-8.2.0: -------------------------------------------------------------------------------- 1 | ../gcc/8.2.0/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/gnu-8.2.0-mvapich-2.1: -------------------------------------------------------------------------------- 1 | ../gcc/8.2.0/mvapich/2.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/gnu-8.2.0-openmpi-3.1: -------------------------------------------------------------------------------- 1 | ../gcc/8.2.0/openmpi/3.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/intel-2018: -------------------------------------------------------------------------------- 1 | ../intel/2018/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/intel-2018-mvapich-2.1: -------------------------------------------------------------------------------- 1 | ../intel/2018/mvapich/2.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/intel-2018-openmpi-3.1: -------------------------------------------------------------------------------- 1 | ../intel/2018/openmpi/3.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/pgi-18.4: -------------------------------------------------------------------------------- 1 | ../pgi/18.4/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/pgi-18.4-mvapich-2.1: -------------------------------------------------------------------------------- 1 | ../pgi/18.4/mvapich/2.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/1.1/1/pgi-18.4-openmpi-3.1: -------------------------------------------------------------------------------- 1 | ../pgi/18.4/openmpi/3.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/2.4/1/README.txt: -------------------------------------------------------------------------------- 1 | ../../1.1/1/README.txt -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/2.4/1/gnu-9.1.0: -------------------------------------------------------------------------------- 1 | ../gcc/9.1.0/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/2.4/1/gnu-9.1.0-openmpi-4.0: -------------------------------------------------------------------------------- 1 | ../gcc/9.1.0/openmpi/4.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/2.4/1/intel-2019: -------------------------------------------------------------------------------- 1 | ../intel/2019/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/2.4/1/intel-2019-openmpi-4.0: -------------------------------------------------------------------------------- 1 | ../intel/2019/openmpi/4.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/2.4/1/pgi-19.4: -------------------------------------------------------------------------------- 1 | ../pgi/19.4/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/foo/2.4/1/pgi-19.4-openmpi-3.1: -------------------------------------------------------------------------------- 1 | ../pgi/19.4/openmpi/3.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/gcc/8.2.0/bin/gcc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "gcc 8.2.0" 3 | -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/gcc/9.1.0/bin/gcc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "gcc 9.1.0" 3 | -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/intel/2018/bin/icc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "icc 2018" 3 | -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/intel/2019/bin/icc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "icc 2019" 3 | -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.1/1/README.txt: -------------------------------------------------------------------------------- 1 | ../../2.3.1/1/README.txt -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.1/1/gnu-8.2.0: -------------------------------------------------------------------------------- 1 | ../gcc/8.2.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.1/1/gnu-9.1.0: -------------------------------------------------------------------------------- 1 | ../gcc/9.1.0/ -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.1/1/intel-2018: -------------------------------------------------------------------------------- 1 | ../intel/2018 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.1/1/intel-2019: -------------------------------------------------------------------------------- 1 | ../intel/2019 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.1/1/pgi-18.4: -------------------------------------------------------------------------------- 1 | ../pgi/18.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.1/1/pgi-19.4: -------------------------------------------------------------------------------- 1 | ../pgi/19.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.3.1/1/gnu-9.1.0: -------------------------------------------------------------------------------- 1 | ../gcc/9.1.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.3.1/1/intel-2019: -------------------------------------------------------------------------------- 1 | ../intel/2019 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/mvapich/2.3.1/1/pgi-19.4: -------------------------------------------------------------------------------- 1 | ../pgi/19.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/3.1/1/README.txt: -------------------------------------------------------------------------------- 1 | ../../4.0/1/README.txt -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/3.1/1/gnu-8.2.0: -------------------------------------------------------------------------------- 1 | ../gcc/8.2.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/3.1/1/gnu-9.1.0: -------------------------------------------------------------------------------- 1 | ../gcc/9.1.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/3.1/1/intel-2018: -------------------------------------------------------------------------------- 1 | ../intel/2018 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/3.1/1/intel-2019: -------------------------------------------------------------------------------- 1 | ../intel/2019 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/3.1/1/pgi-18.4: -------------------------------------------------------------------------------- 1 | ../pgi/18.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/3.1/1/pgi-19.4: -------------------------------------------------------------------------------- 1 | ../pgi/19.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/4.0/1/gnu-9.1.0: -------------------------------------------------------------------------------- 1 | ../gcc/9.1.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/4.0/1/intel-2019: -------------------------------------------------------------------------------- 1 | ../intel/2019 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/openmpi/4.0/1/pgi-19.4: -------------------------------------------------------------------------------- 1 | ../pgi/19.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/pgi/18.4/bin/pgcc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "pgcc 18.4" 3 | -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/fake-sw-root/pgi/19.4/bin/pgcc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "pgcc 19.4" 3 | -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulepath/Compiler/gcc/8.2.0/bar/common: -------------------------------------------------------------------------------- 1 | ../../../../common/bar/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulepath/Compiler/gcc/8.2.0/foo/common: -------------------------------------------------------------------------------- 1 | ../../../../common/foo/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulepath/Compiler/gcc/9.1.0/bar/common: -------------------------------------------------------------------------------- 1 | ../../../../common/bar/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulepath/Compiler/gcc/9.1.0/foo/common: -------------------------------------------------------------------------------- 1 | ../../../../common/foo/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulepath/Compiler/intel/2018/foo/common: -------------------------------------------------------------------------------- 1 | ../../../../common/foo/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulepath/Compiler/intel/2019/foo/common: -------------------------------------------------------------------------------- 1 | ../../../../common/foo/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulepath/Compiler/pgi/18.4/foo/common: -------------------------------------------------------------------------------- 1 | ../../../../common/foo/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulepath/Compiler/pgi/19.4/foo/common: -------------------------------------------------------------------------------- 1 | ../../../../common/foo/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc3/gcc/8.2.0: -------------------------------------------------------------------------------- 1 | ../../modulerc4/gcc/8.2.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc3/gcc/9.1.0: -------------------------------------------------------------------------------- 1 | ../../modulerc4/gcc/9.1.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc3/gcc/common: -------------------------------------------------------------------------------- 1 | ../../modulerc4/gcc/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc3/intel/2018: -------------------------------------------------------------------------------- 1 | ../../modulerc4/intel/2018 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc3/intel/2019: -------------------------------------------------------------------------------- 1 | ../../modulerc4/intel/2019 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc3/intel/common: -------------------------------------------------------------------------------- 1 | ../../modulerc4/intel/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc3/pgi/18.4: -------------------------------------------------------------------------------- 1 | ../../modulerc4/pgi/18.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc3/pgi/19.4: -------------------------------------------------------------------------------- 1 | ../../modulerc4/pgi/19.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc3/pgi/common: -------------------------------------------------------------------------------- 1 | ../../modulerc4/pgi/common -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/bar/avx/gcc/8.2.0/4.7: -------------------------------------------------------------------------------- 1 | ../../../4.7/gcc/8.2.0/avx -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/bar/avx/gcc/9.1.0/5.4: -------------------------------------------------------------------------------- 1 | ../../../5.4/gcc/9.1.0/avx -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/bar/avx2/gcc/9.1.0/5.4: -------------------------------------------------------------------------------- 1 | ../../../5.4/gcc/9.1.0/avx2 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/bar/gcc/8.2.0/avx/4.7: -------------------------------------------------------------------------------- 1 | ../../../4.7/gcc/8.2.0/avx -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/bar/gcc/8.2.0/sse4.1/4.7: -------------------------------------------------------------------------------- 1 | ../../../4.7/gcc/8.2.0/sse4.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/bar/gcc/9.1.0/avx/5.4: -------------------------------------------------------------------------------- 1 | ../../../5.4/gcc/9.1.0/avx -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/bar/gcc/9.1.0/avx2/5.4: -------------------------------------------------------------------------------- 1 | ../../../5.4/gcc/9.1.0/avx2 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/bar/sse4.1/gcc/8.2.0/4.7: -------------------------------------------------------------------------------- 1 | ../../../4.7/gcc/8.2.0/sse4.1 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/foo/gcc/8.2.0/nompi/1.1: -------------------------------------------------------------------------------- 1 | ../../../1.1/gcc/8.2.0/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/foo/gcc/9.1.0/nompi/2.4: -------------------------------------------------------------------------------- 1 | ../../../2.4/gcc/9.1.0/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/foo/intel/2018/intelmpi/1.1: -------------------------------------------------------------------------------- 1 | ../../../1.1/intel/2018/intelmpi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/foo/intel/2018/nompi/1.1: -------------------------------------------------------------------------------- 1 | ../../../1.1/intel/2018/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/foo/intel/2019/intelmpi/2.4: -------------------------------------------------------------------------------- 1 | ../../../2.4/intel/2019/intelmpi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/foo/intel/2019/nompi/2.4: -------------------------------------------------------------------------------- 1 | ../../../2.4/intel/2019/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/foo/pgi/18.4/nompi/1.1: -------------------------------------------------------------------------------- 1 | ../../../1.1/pgi/18.4/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/foo/pgi/19.4/nompi/2.4: -------------------------------------------------------------------------------- 1 | ../../../2.4/pgi/19.4/nompi -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/mvapich/gcc/8.2.0/2.1: -------------------------------------------------------------------------------- 1 | ../../2.1/gcc/8.2.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/mvapich/gcc/9.1.0/2.1: -------------------------------------------------------------------------------- 1 | ../../2.1/gcc/9.1.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/mvapich/gcc/9.1.0/2.3.1: -------------------------------------------------------------------------------- 1 | ../../2.3.1/gcc/9.1.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/mvapich/intel/2018/2.1: -------------------------------------------------------------------------------- 1 | ../../2.1/intel/2018 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/mvapich/intel/2019/2.1: -------------------------------------------------------------------------------- 1 | ../../2.1/intel/2019 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/mvapich/intel/2019/2.3.1: -------------------------------------------------------------------------------- 1 | ../../2.3.1/intel/2019 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/mvapich/pgi/18.4/2.1: -------------------------------------------------------------------------------- 1 | ../../2.1/pgi/18.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/mvapich/pgi/19.4/2.1: -------------------------------------------------------------------------------- 1 | ../../2.1/pgi/19.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/mvapich/pgi/19.4/2.3.1: -------------------------------------------------------------------------------- 1 | ../../2.3.1/pgi/19.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/openmpi/gcc/8.2.0/3.1: -------------------------------------------------------------------------------- 1 | ../../3.1/gcc/8.2.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/openmpi/gcc/9.1.0/3.1: -------------------------------------------------------------------------------- 1 | ../../3.1/gcc/9.1.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/openmpi/gcc/9.1.0/4.0: -------------------------------------------------------------------------------- 1 | ../../4.0/gcc/9.1.0 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/openmpi/intel/2018/3.1: -------------------------------------------------------------------------------- 1 | ../../3.1/intel/2018 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/openmpi/intel/2019/3.1: -------------------------------------------------------------------------------- 1 | ../../3.1/intel/2019 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/openmpi/intel/2019/4.0: -------------------------------------------------------------------------------- 1 | ../../4.0/intel/2019 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/openmpi/pgi/18.4/3.1: -------------------------------------------------------------------------------- 1 | ../../3.1/pgi/18.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/openmpi/pgi/19.4/3.1: -------------------------------------------------------------------------------- 1 | ../../3.1/pgi/19.4 -------------------------------------------------------------------------------- /doc/example/compiler-etc-dependencies/modulerc4/openmpi/pgi/19.4/4.0: -------------------------------------------------------------------------------- 1 | ../../4.0/pgi/19.4 -------------------------------------------------------------------------------- /doc/example/ensure-user-qualify-modules/initrc: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | module config implicit_default 0 4 | -------------------------------------------------------------------------------- /doc/example/ensure-user-qualify-modules/modulefiles/softa/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/ensure-user-qualify-modules/modulefiles/softa/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/ensure-user-qualify-modules/modulefiles/softb/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/ensure-user-qualify-modules/modulefiles/softb/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/flavored-modules/modulefiles/flavor/gromacs/plumed: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict flavor/gromacs 3 | -------------------------------------------------------------------------------- /doc/example/flavored-modules/modulefiles/flavor/gromacs/standard: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict flavor/gromacs 3 | -------------------------------------------------------------------------------- /doc/example/flavored-modules/modulefiles/flavor/hdf5/parallel: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict flavor/hdf5 3 | -------------------------------------------------------------------------------- /doc/example/flavored-modules/modulefiles/flavor/hdf5/serial: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict flavor/hdf5 3 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/appA/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load deplibA/1.0 3 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/appA/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load deplibA/2.0 3 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/appB/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load deplibB/1.0 3 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/appB/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load deplibB/2.0 3 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/bioappA/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/bioappA/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/bioappB/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/bioappB/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/chemappA/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/chemappA/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/chemappB/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/chemappB/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/deplibA/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/deplibA/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/deplibB/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/hide-and-forbid-modules/modulefiles/deplibB/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/inhibit-report-info/modulefiles/bar: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/inhibit-report-info/modulefiles/foo: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq bar 3 | -------------------------------------------------------------------------------- /doc/example/new-features-without-breaking-old-module/modulefiles/bar/.common: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appA/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq toolchain/a 3 | prereq libY 4 | prereq libX 5 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appA/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq toolchain/b 3 | prereq libY 4 | prereq libX 5 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appB/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq liby 3 | prereq toolchain/a 4 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appC/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./2.0 default 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appC/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict appC 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appC/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict appC 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appC/2.2.10: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict appC 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appC/2.2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict appC 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appC/2.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict appC 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appC/3.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq libX/1 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appD/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq appC@2.2:2.8 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/appD/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq appC@2.3,3 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/libX/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq toolchain/a toolchain/b 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/libX/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq toolchain/b 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/libY/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./1.0 default 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/libY/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq toolchain/a toolchain/b 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/libY/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq toolchain/a 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/toolchain/a: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict toolchain 3 | -------------------------------------------------------------------------------- /doc/example/sc19/modulefiles/toolchain/b: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict toolchain 3 | -------------------------------------------------------------------------------- /doc/example/source-script-in-modulefile/bar-2.1/bin/barbin: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "bar, version 2.1" 3 | -------------------------------------------------------------------------------- /doc/example/source-script-in-modulefile/foo-1.2/bin/foobin: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "foo, version 1.2" 3 | -------------------------------------------------------------------------------- /doc/example/sticky-modules/modulefiles/compiler/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module4.7 2 | module-tag sticky compiler 3 | -------------------------------------------------------------------------------- /doc/example/sticky-modules/modulefiles/compiler/compA/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/sticky-modules/modulefiles/compiler/compA/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/sticky-modules/modulefiles/compiler/compB/1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/sticky-modules/modulefiles/compiler/compB/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/sticky-modules/modulefiles/core/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module4.7 2 | module-tag super-sticky core 3 | -------------------------------------------------------------------------------- /doc/example/sticky-modules/modulefiles/core/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/sticky-modules/modulefiles/core/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/tips-for-code-reuse/fooB/1.0: -------------------------------------------------------------------------------- 1 | .generic -------------------------------------------------------------------------------- /doc/example/tips-for-code-reuse/fooB/2.0: -------------------------------------------------------------------------------- 1 | .generic -------------------------------------------------------------------------------- /doc/example/unload-firstly-loaded/modulefiles/foo/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/example/unload-firstly-loaded/modulefiles/foo/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /doc/source/CONTRIBUTING.rst: -------------------------------------------------------------------------------- 1 | ../../CONTRIBUTING.rst -------------------------------------------------------------------------------- /doc/source/GOVERNANCE.rst: -------------------------------------------------------------------------------- 1 | ../../GOVERNANCE.rst -------------------------------------------------------------------------------- /doc/source/INSTALL-win.rst: -------------------------------------------------------------------------------- 1 | ../../INSTALL-win.rst -------------------------------------------------------------------------------- /doc/source/INSTALL.rst: -------------------------------------------------------------------------------- 1 | ../../INSTALL.rst -------------------------------------------------------------------------------- /doc/source/MIGRATING.rst: -------------------------------------------------------------------------------- 1 | ../../MIGRATING.rst -------------------------------------------------------------------------------- /doc/source/NEWS.rst: -------------------------------------------------------------------------------- 1 | ../../NEWS.rst -------------------------------------------------------------------------------- /doc/source/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | sphinx-rtd-theme 3 | -------------------------------------------------------------------------------- /testsuite/etc/modulerc.depsaltname: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-alias alfa fa 3 | module-alias alfb fb 4 | -------------------------------------------------------------------------------- /testsuite/etc/modulerc.tag: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-tag foorc tag/5.0 3 | module-tag barrc tag/5.0 4 | -------------------------------------------------------------------------------- /testsuite/example/modulespath-wild.in: -------------------------------------------------------------------------------- 1 | @baseprefix@/modulefile* 2 | -------------------------------------------------------------------------------- /testsuite/home.3/.modulerc: -------------------------------------------------------------------------------- 1 | module-version loc_sym/1.0 sym_home 2 | -------------------------------------------------------------------------------- /testsuite/home.4/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module99 2 | module-version loc_sym/1.0 sym_home 3 | -------------------------------------------------------------------------------- /testsuite/home/.Xresources: -------------------------------------------------------------------------------- 1 | another-prog.one-prop: 96 2 | another-prog.another-prop: true 3 | -------------------------------------------------------------------------------- /testsuite/home/.module/infocmd: -------------------------------------------------------------------------------- 1 | module use testsuite/modulefiles 2 | module load info/command 3 | 4 | -------------------------------------------------------------------------------- /testsuite/home/.modules.saveempty: -------------------------------------------------------------------------------- 1 | module load 2 | -------------------------------------------------------------------------------- /testsuite/home/.modules.savenull: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /testsuite/home/coll-sticky-0: -------------------------------------------------------------------------------- 1 | module use --append testsuite/modulefiles.3 2 | module load foo/2.0 3 | -------------------------------------------------------------------------------- /testsuite/is_func_defined: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | type "$1" >/dev/null 2>&1 3 | -------------------------------------------------------------------------------- /testsuite/is_func_defined.fish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/fish 2 | type -q "$argv[1]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles wspace: -------------------------------------------------------------------------------- 1 | modulefiles.2 -------------------------------------------------------------------------------- /testsuite/modulefiles.2/ICASE/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/ICASE2/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/ICASE3/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/ICASE3/VERS.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/ICASE3/vers.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/IcAsE/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/NaN: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis NaN 3 | prereq nanfoo 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [module-info specified] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers/1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers2@1.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers/1.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers2 @1.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers/1.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | break 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers/1.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers/1.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers2 @3.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers/deep/1/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers10/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers8@1,3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers10/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers8@1,3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers10/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers9@1,3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers10/4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers9@1,3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers10/5: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers8@1: 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers10/6: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers8@1: 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers10/7: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers9@1:3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers10/8: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers9@1:3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers @1.4 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers @1.5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers @1.2 advvers@1.5 @1.6 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq @1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict @1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | is-loaded @1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers @1.6 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers@1.7 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload advvers@1.6 advvers @1.8 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers2@4.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers2@4.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/4.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers2@4.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/5.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/5.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers2@5.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/5.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers2 @5.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/5.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers2 @5.0 3 | conflict advvers2@5.1 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/6.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/6.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/6.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers2@6.0 3 | prereq advvers2 @6.2 @6.1 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/6.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers2 @6.5 advvers2@6.0 @6.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/6.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/6.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers2@6.7 3 | prereq advvers2@6.1 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/6.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq unknown@1.4.5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict unknown @1.4.5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers@deep/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers @deep/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers@2.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers@2.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq extdfl @1.3 3 | prereq extdfl @1.4 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.4.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl @1.3 3 | conflict extdfl @1.4 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.5.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ExtDfl@1.3.7 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers2/8.5.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict EXTDFL@1.3.7 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers4/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [module-info specified] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers4/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [module-info specified] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers4/1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers5@0.9,1.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers4/1.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers5 @1.0,1.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers4/1.5.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | break 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers4/1.5.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | break 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers4/1.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers4/1.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers5 @3.1,3.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers4/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload advvers4@2.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-alias advvers5/9.2 advvers4/2.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/0.9: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers4 @1.3,1.4 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers4 @1.5.1,1.5.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/1.3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers4 @1.1,1.2 advvers4@1.4 @1.5,1.6 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq @1,2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict @1,2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | is-loaded @1,2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers4 @1.1,1.2,1.6 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers4@1.6,1.7 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload advvers4@1.7,1.6 advvers4 @1.7,1.8 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers5@3.0,4.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers5@3.1,4.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/4.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers5@3.9,4.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/5.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/5.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers5@4.0,5.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/5.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers5 @5.0,5.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/5.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers5 @5.1,5.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/6.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/6.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/6.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers5 @6.0,6.5 advvers5@6.0 @5.0,6.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/6.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/6.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/8.1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq unknown@1.3.1,1.4.5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/8.1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict unknown @1.3.1,1.4.5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/8.2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers@deep/1,deep/2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/8.2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers @deep/1,deep/2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/8.3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers@2.1,2.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/8.3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers@2.1,2.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/8.4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq extdfl @1.3,2 3 | prereq extdfl @1.4,1.2 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/8.5.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ExtDfl@1.3.7,1.2.3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers5/8.5.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict EXTDFL@1.3.7,1.2.3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [module-info specified] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers7@:1.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/1.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers7 @1.0:1.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/1.5.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | break 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/1.5.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | break 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/1.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/1.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers7 @:3.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload advvers6@2.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq extdfl2@3:3.9 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq extdfl7@:10 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers6/3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq extdfl7@:11 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-alias advvers7/9.2 advvers6/2.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/0.9: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers6 @1.3:1.4 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers6 @:1.5.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/1.3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers6 @1.1:1.2 advvers6@1.4: @:1.6 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/1.3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers6 @:1.5.1 advvers6@1.4: @:1.6 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq @1:2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict @:2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | is-loaded @2: 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers6 @1.0:1.6 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers6@1.6:1.7 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload advvers6@1.6:1.7 advvers6 @:1.8 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers7@4.0.10:4.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers7@4.2:4.90 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/4.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers7@:4.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/5.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/5.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers7@:5.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/5.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load advvers7 @:5.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/5.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers7 @5.0:5.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/6.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/6.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/6.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers7@:6.0 3 | prereq advvers7 @:6.1 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/6.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers7 @:6.1 advvers7@6.5:6.5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/6.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/6.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers7@6.7:6.10 3 | prereq advvers7@:6.1 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/6.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/8.1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq unknown@:1.4.5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/8.1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict unknown @1.3.1: 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/8.2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers@deep/1:deep/2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/8.2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers @deep/1: 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/8.3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq advvers@2.1: 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/8.3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict advvers@:2.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/8.4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq extdfl @1.3:2 3 | prereq extdfl @1.4:1.5 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/8.5.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ExtDfl@1.3.7:1.4.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers7/8.5.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict EXTDFL@1.3.7:1.4.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers8/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers8/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers8/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers9/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./1 default 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers9/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers9/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers9/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers@2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/advvers@2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym1/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version /1 default 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym1/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym1/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym2/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version /2 latest bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym2/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym2/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym3/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym3/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym4/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-alias /latest /2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym4/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym4/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym5/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym5/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym5/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym5/default: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym6/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym6/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym7/dir1/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym7/dir1/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym7/dir2/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym7/dir2/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym8/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-alias /3 /2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym8/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym8/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/autosym9/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq foo@default 3 | conflict autosym1@latest 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/badrc3/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/bar/0.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | break 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/bar/0.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | badcmd 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/bar/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/bar/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/baz/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/baz/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/clear/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module alias clear/1 clear/foo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/clear/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | append-path FOO bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/clear/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq clear/1 3 | conflict clear/3 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/clear/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/e.t.fl/1.3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/e.t.fl/1.3.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/e.t.fl/1.4.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/.1.3.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/.1.3.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./1.3.1 default 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.0.0-alpha.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.0.0-alpha.beta: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.0.0-beta: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.0.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.1.0-beta: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.2.10: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.2.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.3.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/1.4.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl/2.0.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./2.RC.1 vicase 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/2.rc.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/2.rc.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/3.0.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/3.0.15: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/3.0.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/3.010.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/3.09.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/3.1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/3.1.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/3.10.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl2/3.9.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl3/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl3/1.1/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl3/1.3/4: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/conflict: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl2/3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/conflict2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/conflicta: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl3/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/conflicts: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl6 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/info: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [module-info loaded extdfl2/3.1] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/info2: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [module-info loaded extdfl/1.3] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/isloaded: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [is-loaded extdfl2/3] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/isloaded2: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [is-loaded extdfl/1] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/load: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load extdfl2/3.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/load2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load extdfl/1.3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/load3: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load extdfl7/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/prereq: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq extdfl2/3.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/prereq2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq extdfl/1.3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/prereqc: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq extdfl6/conflictP 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/prereqi: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq Extdfl2/3.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/prereqi2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq Extdfl/1.3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/unload: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload extdfl2/3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl6/unload2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload extdfl/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl7/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/10a: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/10foo: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/10g: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl7/2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/2.10: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl7/2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl7/3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extdfl7/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/5.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict extDfl7/6 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/6.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq Extdfl7/5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl7/7.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl8/1.3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl8/1.3.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl8/1.33: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdfl8/1.4.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdflb.4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdflb.4.1/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdflc-4/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/extdflc-5/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/f: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/foo/0.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | break 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/foo/0.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | badcmd 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/foo/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/foo/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide1/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide1/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide1/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide1/2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide1/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide1/3.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide1/3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide1/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide1/5.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide2/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide3/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide3/sub1/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide3/sub1/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide3/sub2/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide3/sub2/5.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hide4/.1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@1.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@3.1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@2:4 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/1.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@3,4 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/1.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@3.1,4.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@latest 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/2.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@4: 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/2.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@4.0: 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/2.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@2,5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/2.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide1@2.2,5.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hide2/1.5 3 | prereq hide2/1.1 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module list -t 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/4.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load hide3/1.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/4.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load hidereq/4.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/hidereq/4.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/iCaSe/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/iCaSe2/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/iCaSe3/1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/iCaSe3/1.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icASE/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/conflict: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict NOCASE 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/conflicta: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict NOcase3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/conflictp: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict ICase/PREreqC 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/conflicts: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict Icase 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/isloaded: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [is-loaded NoCaSe] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/load: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load noCASE/alIAS 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/loadi: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load --icase noCASE/1 3 | 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/prereq: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq NoCase/VERS 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/prereqc: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq icASE/conflictP 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/unload: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload NOcase 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase/z: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/icase3/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/load: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/loc: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/mlinmod: -------------------------------------------------------------------------------- 1 | #%Module 2 | ml extdfl -advvers 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nanbar/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv nan [module-info alias nan] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nanbar/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts [getenv FOO nan] 3 | prereq NaN 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nanbar/nan: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nanfoo/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./1 nan 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nanfoo/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase/.hidden: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase/deep/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase/deep/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase/regular: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase7/conflictim1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict ICase 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase7/conflictim2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict iCaSe 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase7/prereqim1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ICase 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/nocase7/prereqim2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq iCaSe 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/quux/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/qux/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/qux/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/restore: -------------------------------------------------------------------------------- 1 | #%Module 2 | module restore coll2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/source-sh/4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | source-sh 3 | module-whatis [module-info name] 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/source-sh/8.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/sp.ce y+/0 2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/sp.ce y+/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/sp.ce y+/2.10: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/sp.ce y+/2.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/sp.ce y+/2.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/sp.ce y+/2.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ya/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ya/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yb/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version {space yb} {dns} 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yb/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yc/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq spacenc/2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yc/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict spacenc/3 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yc/4: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yc/5: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yd/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yd/2.10: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yd/2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yd/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yd/4.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space yd/5.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {sp.ce y+@2.5:2.7} 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq sp.ce y+@2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq sp.ce y+ @2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {sp.ce y+} @2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {sp.ce y+}@2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {sp.ce y+@1.2} @2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {sp.ce y+} @1.2 {@2.5:2.7} baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {sp.ce y+} {@0 2} baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {sp.ce y+@0 2} baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.8: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {space y @1 } baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/1.9: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {space y @a } baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict sp.ce y+@2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict sp.ce y+ @2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict {sp.ce y+} @2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict {sp.ce y+}@2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict {sp.ce y+@1.2} @2.5:2.7 baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.5: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict {sp.ce y+} @1.2 {@2.5:2.7} baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.6: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict {sp.ce y+} {@0 2} baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict {sp.ce y+@0 2} baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.8: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict {space y @1 } baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/space ye/2.9: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict {space y @n } baz @:1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/spacen/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/spacen/2 s: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/spacenb/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version spacenb {dw s} 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/spacenb/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/spacenc/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {space yc/3} 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/spacenc/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict {space yc/3} 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/spacenc/4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq {space yc/4} {space yc/5} 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/t: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/unloc: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.2/veryveryveryveryveryveryveryverylong/name: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/advvers/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq foo@loaded 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/advvers2/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/advvers2/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/advvers2/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/advvers2/2.10: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/advvers2/2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/advvers2/2.8: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/advvers2/3.7: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/advvers2/4.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/bar/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/baz/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/baz/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/complete/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/foo/0.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/foo/0.err: -------------------------------------------------------------------------------- 1 | #%Module 2 | foo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/foo/0.load: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load foo/1.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/foo/0.prereq: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq foo/1.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/foo/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/load: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load foo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/loaderr: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load foo/0.err 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/loadmul: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load foo bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/loadsubm: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load foo/0.load 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/loadsubp: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load foo/0.prereq 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/loadunk: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load foo/0.unk 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/prereq: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq impreq/load 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/switch1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch foo/2.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/switch1err: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch foo/0.err 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/switch1unk: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch foo/0.unk 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/switch2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch bar foo/2.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/switchsubm: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch foo/0.load 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/switchsubp: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch foo/0.prereq 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/unload: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload foo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/unloaderr: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload foo/0.err 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/impreq/unloadmul: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload foo bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/interp/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/keep/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/key/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/key/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/key/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/key/5.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/lcompat/1.9/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/lcompat/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/lcompatdep/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/lint/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | unk 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/lint/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | if {test} {} 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/lint/1.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/lint/1.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | source ./1.2 4 | source ./unk 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/lint/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/list/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/mod-to-sh/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/load: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load --not-req foo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/loadany: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load-any --not-req foo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/loadanymul: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load-any --not-req foo bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/loaderr: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load --not-req foo/0.err 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/loadmul: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load --not-req foo bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/loadsubm: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load --not-req foo/0.load 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/loadsubp: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load --not-req foo/0.prereq 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/loadunk: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load --not-req foo/0.unk 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/prereq: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq notreq/load 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/switch1: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch --not-req foo/2.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/switch1err: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch --not-req foo/0.err 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/switch1unk: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch --not-req foo/0.unk 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/switch2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch --not-req bar foo/2.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/switchsubm: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch --not-req foo/0.load 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/switchsubp: -------------------------------------------------------------------------------- 1 | #%Module 2 | module switch --not-req foo/0.prereq 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/tryload: -------------------------------------------------------------------------------- 1 | #%Module 2 | module try-load --not-req foo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/tryloadmul: -------------------------------------------------------------------------------- 1 | #%Module 2 | module try-load --not-req foo bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/unload: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload --not-req foo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/unloaderr: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload --not-req foo/0.err 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/unloadmul: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload --not-req foo bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/notreq/use: -------------------------------------------------------------------------------- 1 | #%Module 2 | module use --not-req $env(TESTSUITEDIR) 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/optional/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/path-cmd-opt/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/protect/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/qux/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/refresh/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-tag bar refresh 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/refresh/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | source-sh bash testsuite/example/sh-to-mod.sh 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/refresh/6.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/reset/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/sticky/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/sticky/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/stickysub/dir1/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/stickysub/dir1/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/stickysub/dir2/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/stickysub/dir2/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/tag/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/tag/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/tag/5.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/tag/6.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/tag/7.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-tag foo tag/7.0 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/tag/9.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/var=val: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis var=val 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/variant/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | variant bar val1 val2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/vrreq1/w s: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.3/vrreq2/w s: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/all/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/append/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | append-path --glob FOO /tmp* 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/append/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/auto-load/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/bar/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/conun/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/delim/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/depre/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/err/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/eval-source-sh/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/foo/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/foo/9.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/help/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/hide/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/hide/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/info/auto-loaded: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load info/tags 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/info/mode7: -------------------------------------------------------------------------------- 1 | #%Module 2 | variant foo [module-info mode] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/lcompat/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/lconun/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/lerr/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/llerr/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/lsb-release/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/modulepath-opt/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/modulepath/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/prepend/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | prepend-path --glob FOO /tmp* 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/prepend/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/puts/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/qux/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-virtual qux/2 ../../modulefiles.3/qux/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/qux/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/remove/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/setenv/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv TS1 {} 3 | setenv TS2 $env(TS1) 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/setenv/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/source-sh/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-whatis [module-info name] 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/source/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/source/zz: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky1/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky1/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky1/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky2/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky3/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky4/sub/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky4/sub/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky4/sub/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/sticky4/sub2/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/tag/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/tag/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/tfoo/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/ufoo/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/ufoo/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/uniq/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/uniq/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/uniqsub/sub2/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/uniqsub/sub2/4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/unload/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/unload/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/unset/2.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.4/warn/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.allin/restoreenv/0.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts02 $env(ts01a) 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deep/badmodvers/foo: -------------------------------------------------------------------------------- 1 | #%Module1.0 2 | module-whatis "badmodvers/foo" 3 | 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deep/emptydeepdir/emptydir/.ignored: -------------------------------------------------------------------------------- 1 | # not modulefile 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deep/modalias/dir3/.ignored: -------------------------------------------------------------------------------- 1 | # not modulefile 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deep/moddalias/dir2/.ignored: -------------------------------------------------------------------------------- 1 | # not modulefile 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/a: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict b 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/aa: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ab: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq aa 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ac: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ad: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ac 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ae: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ad 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/af: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ae ab 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ag: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq aa 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ah: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ag 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ai: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ab ah 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/aj: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq aa ac 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ak: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ac aa 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt/7: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-alias alt/int ./7 3 | module-version ./7 int2 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt/8: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict alt/i4 3 | conflict alt/i4b 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt/9: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt/dir/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt/dir/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt/dir/4: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt/dir/5: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt/dir/6: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/alt2/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/b: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq c 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/bf: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ae 3 | prereq ab 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/bi: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ab 3 | prereq ah 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/bj: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq aa 3 | prereq ac 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/bk: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ac 3 | prereq aa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/c: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict c 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ca: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/cb: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/con1/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/con1/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict con2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/con2/2.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict con1 3 | prereq con1/1.1 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/con2/2.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq con1/1.1 3 | conflict con1 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/con2/2.3: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq con1/1.2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/d: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict c 3 | prereq c 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/db: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/dd: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/de: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/dh: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/e: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq b 3 | prereq f 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict c 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f1: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f11: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f12: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f15: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f2: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f24: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f25: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f29: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f4: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f5: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f8: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/f9: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fa: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/faa: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa 3 | conflict fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fab: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq alfa 3 | conflict fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fac: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict fa 3 | prereq fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fad: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict alfa 3 | prereq fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fae: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load fa 3 | conflict fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/faf: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict fa 3 | module load fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fai: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa 3 | module unload fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/faj: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload fa 3 | prereq fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fak: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load fa 3 | module unload fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fal: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load fa 3 | module unload alfa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fam: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload fa 3 | module load fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fan: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload fa 3 | module load alfa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fb: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fc: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fd: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict fa 3 | conflict fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fe: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa 3 | prereq fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ff: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa fb 3 | prereq fa fb 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fg: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload fa 3 | module unload fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fh: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load fa 3 | module load fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fi: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa fb fc 3 | prereq fc fa fb 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fia: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa fb fc 3 | prereq fc fa fb 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fj: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict fa 3 | module unload fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fk: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload fa 3 | conflict fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fl: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa 3 | module load fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fm: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load fa 3 | prereq fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fn: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict alfa 3 | module unload fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fo: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload alfa 3 | conflict fa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fp: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa 3 | module load alfa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fq: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load fa 3 | prereq alfa 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fr: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa fb 3 | prereq fb 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fs: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fa alfb 3 | module load fb 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ft: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq fb 3 | prereq fa alfb 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/fu: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load fb 3 | prereq fa fb 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/g: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq a 3 | prereq b 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/g1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/g2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/g3: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict g2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/g5: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict g5 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/gi: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/gn: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/gs: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq b 3 | prereq a 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h34: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h50: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h57: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h58: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h60: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h61: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h68: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h70: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/h73: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ha/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ha/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ha/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/haa: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load ha 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/hab: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq ha 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/hac/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./1 default 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/hac/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/hac/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/had: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load hac 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/hae: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq hac 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq b 3 | prereq a 4 | prereq j 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq altfoo 3 | prereq alt/sym 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict altfoo 3 | conflict alt/sym 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i3: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict alt/v8 3 | prereq alt/8 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i3b: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict alt/8 3 | prereq alt/v8 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i4: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq alt/8 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i4b: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq alt/v8 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i5/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict irefcon 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i5/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict irefcon 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i6: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load altfoo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/i7: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload altfoo 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ia: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/j: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/k: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq c 3 | conflict c 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/l: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq f 3 | prereq b 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/m: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq a 3 | prereq b 4 | prereq j 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/m1: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/m10: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/m11: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/m12: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load m10 m11 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ma: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload mb 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mb: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mc 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mbs: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload mbt 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mbt: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mbs 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mbu: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mc 3 | module unload ma 4 | break 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload mc 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/md: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload mc 3 | module load mc 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/me: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mb 3 | module load mf 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mf: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload mc 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mg: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load ma 3 | module load mb 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mh: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mb 3 | module load ma 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mi: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mb 3 | module load ma 4 | module load mj 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mj: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mk: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mc 3 | module unload mc 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ml: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mf 3 | module load mb 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mm: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load ma 3 | module load mb 4 | module load mj 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mn: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload mo 3 | module load mo 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mo: -------------------------------------------------------------------------------- 1 | #%Module 2 | module unload mn 3 | module load mn 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mp: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mj 3 | module unload ma 4 | module load ma 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mq: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mi 3 | module load mp 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mr: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load mb 3 | module load mj 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ms: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict mt 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/msf: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict $env(TESTSUITEDIR)/modulefiles.deps/mtf 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mt: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load ms 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/mtf: -------------------------------------------------------------------------------- 1 | #%Module 2 | module load $env(TESTSUITEDIR)/modulefiles.deps/msf 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/n: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict o 3 | prereq o 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/o: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict n 3 | prereq n 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/p: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq j 3 | conflict a 4 | prereq a 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/q: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq i 3 | prereq p 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/r: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq b 3 | prereq j 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/raa: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/raam: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rac: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/racm: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/raem: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rb: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rba: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rbe: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rca: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rea: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/reb: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/refcon/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict refcon 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/refcon/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict refcon 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rf: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rfa: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rfi: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rga: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/rgi: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/ro: -------------------------------------------------------------------------------- 1 | #%Module 2 | puts stderr "[module-info mode] [module-info name]" 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/s: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict t 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/1.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/1.4: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/2/0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/2/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/2/8: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/3.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/3.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/swaa/3.8: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/t: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq s 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/u: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq c 3 | conflict a 4 | break 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/vmod1/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict vmod1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/vmod1/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict vmod1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/vmod2/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version vmod2/1 default 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/vmod2/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | conflict vmod2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/vmod2/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq vmod1/2 3 | conflict vmod2 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/vmod3/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq vmod2/2 vmod2 3 | conflict vmod3 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.deps/vmod3/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | prereq vmod2/2 3 | conflict vmod3 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/deepA/4/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./1 ds 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/deepA/4/1/2/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/deepA/4/1/2/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/deepA/4/1/3/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./1 default 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/deepA/4/1/3/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/deepA/4/1/3/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod1/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod1/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod10: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod11/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./1 sym 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod11/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod11/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod2/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version ./1 default 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod2/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod2/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod3/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-alias ./1 mod1/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod30/.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod30/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod4/.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod5/.common: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod5/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-virtual ./1 .common 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod6/3/1/2/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod7/4/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod8/4/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-alias ./1 mod1/1 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod9/3/.version: -------------------------------------------------------------------------------- 1 | #%Module 2 | set ModulesVersion 2 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod9/3/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod9/4/.common: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/mod9/4/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-virtual ./1 .common 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.indepth/modv/.common: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/foo/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts ok 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/foo/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts ok 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/foo1/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts ok 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/foo1/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts ok 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/look/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | module avail foo1 4 | module avail foo 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/look/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | module avail foo 4 | module avail foo1 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/look/3: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | module avail 4 | module avail f 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/look/4: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | module avail f 4 | module avail 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/look/5: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | is-avail foo1 4 | is-avail foo 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/look/6: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | is-avail foo 4 | is-avail foo1 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/look/7: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | module avail 4 | is-avail foo 5 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/look/8: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | module avail sp\ cial sp\ cial 4 | -------------------------------------------------------------------------------- /testsuite/modulefiles.memcache/sp cial/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | setenv ts ok 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.path1/loc_dv10/.version: -------------------------------------------------------------------------------- 1 | #%Module 2 | set ModulesVersion {no default} 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.path1/loc_dv10/1.1: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.path2/loc_dv10/.version: -------------------------------------------------------------------------------- 1 | #%Module 2 | set ModulesVersion {no default} 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.path2/loc_dv10/1.2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.rc/bar/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-version /1 dfl 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.rc/bar/1: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.rc/bar/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.rc/foo/.common: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.rc/foo/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module 2 | module-virtual /2 .common 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.rc/plain: -------------------------------------------------------------------------------- 1 | #%Module 2 | 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles.spider1/moda/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.spider2/modb/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles.spider3/modc/2: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles/append/8.0: -------------------------------------------------------------------------------- 1 | #%Module1.0 2 | append-path -delim=, FOO bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles/emptydir/.ignored: -------------------------------------------------------------------------------- 1 | # not modulefile 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles/loc_rc010/dir/.4.0: -------------------------------------------------------------------------------- 1 | #%Module 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles/loc_rc010/dir/sub2/incompat: -------------------------------------------------------------------------------- 1 | #%Module99 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles/loc_rc010/subdir/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module1.0 2 | module-version ./.subdir default 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles/loc_rc010/wrong: -------------------------------------------------------------------------------- 1 | #%Module99 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles/mcookierc/.modulerc: -------------------------------------------------------------------------------- 1 | #%Module99 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles/mcookierc/1: -------------------------------------------------------------------------------- 1 | #%Module99.9 2 | -------------------------------------------------------------------------------- /testsuite/modulefiles/prepend/8.0: -------------------------------------------------------------------------------- 1 | #%Module1.0 2 | prepend-path -delim=, FOO bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles/remove/8.0: -------------------------------------------------------------------------------- 1 | #%Module1.0 2 | remove-path -delim=, FOO bar 3 | -------------------------------------------------------------------------------- /testsuite/modulefiles/symlink: -------------------------------------------------------------------------------- 1 | loc_rc6 -------------------------------------------------------------------------------- /testsuite/modulefiles/symlink2: -------------------------------------------------------------------------------- 1 | loc_rc5 -------------------------------------------------------------------------------- /testsuite/modulefiles/symlink3: -------------------------------------------------------------------------------- 1 | loc_rcx -------------------------------------------------------------------------------- /testsuite/systest0: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /testsuite/systest1: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "str:$1" 4 | -------------------------------------------------------------------------------- /testsuite/systest2: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "str:$1" 4 | --------------------------------------------------------------------------------