File: 1

package info (click to toggle)
modules 5.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,036 kB
  • sloc: exp: 79,659; sh: 6,142; tcl: 5,900; makefile: 1,492; ansic: 474; python: 265; csh: 202; perl: 47; ruby: 44; lisp: 13
file content (121 lines) | stat: -rw-r--r-- 4,190 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#%Module
if {[info exists env(TESTSUITE_MODULEPATH_OPT)]} {
    switch -- $env(TESTSUITE_MODULEPATH_OPT) {
        err1 {
            prereq --modulepath
        }
        err2 {
            prereq --modulepath qux
        }
        err3 {
            prereq-all --modulepath qux
        }
        err4 {
            always-load --modulepath qux
        }
        empty1 {
            prereq --modulepath {} qux/1
        }
        dir1 {
            prereq --modulepath /path/to/unk qux/1
        }
        dir2 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3 qux/1
        }
        dir3 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.2:$env(TESTSUITEDIR)/modulefiles.3 qux/1
        }
        dir4 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3:$env(TESTSUITEDIR)/modulefiles.4 qux/1
        }
        dir5 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4 qux/1
        }
        dir6 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles qux/1
        }
        dir7 {
            prereq --modulepath $env(TESTSUITEDIR) qux/1
        }
        dir8 {
            prereq --modulepath /modulefiles.4 qux/1
        }
        virt1 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3 qux@1:2
        }
        virt2 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4 qux@1:2
        }
        pre_reqlo_break1 {
            catch {module load qux/1}
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3 qux/1
        }
        pre_reqlo_break2 {
            catch {module load qux/1}
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4 qux/1
        }
        pre_conun_break1 {
            catch {module unload qux/1}
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3 qux/1
        }
        pre_conun_break2 {
            catch {module unload qux/1}
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4 qux/1
        }
        reqlo_multi1 - reqlo_multi_break1 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4:$env(TESTSUITEDIR)/modulefiles.3 unk/1 qux/1
        }
        full_path1 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3 $env(TESTSUITEDIR)/modulefiles.3/qux/1
        }
        full_path2 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3 $env(TESTSUITEDIR)/modulefiles.4/qux/1
        }
        rel_path1 {
            prereq --modulepath $env(TESTSUITEDIR)/../testsuite/modulefiles.3 qux/1
        }
        rel_path2 {
            prereq --modulepath .. qux/1
        }
        rel_path3 {
            prereq --modulepath ../ qux/1
        }
        rel_path4 {
            prereq --modulepath ../.:../../modulefiles.3 qux/1
        }
        partial_dir1 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4/q qux/1
        }
        partial_dir2 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefil qux/1
        }
        glob_dir1 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.* qux/1
        }
        reqlo_break1 - cyclic_reqlo1 - cyclic_reqlo_break1 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4:$env(TESTSUITEDIR)/modulefiles.3 qux/1
        }
        cyclic_reqlo_break2 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4:$env(TESTSUITEDIR)/modulefiles.3 qux/1
            break
        }
        cyclic_reqlo2 {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3 qux/1
        }
        loaded_from_other_dir - loaded_after_from_other_dir - depre_trigger {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3 qux/1
        }
        loaded_from_other_dir_variant {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.3 qux/1 foo=val1
        }
        loaded_after_from_correct_dir {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4 qux/1
        }
        depre_trigger2_with_specific_same_path - depre_trigger2_with_specific_other_path {
            prereq --modulepath $env(TESTSUITEDIR)/modulefiles.4 qux/1
        }
        depre_trigger2_no_specific_path {
            prereq qux/1
        }
    }
}