summaryrefslogtreecommitdiff
path: root/test/end-to-end/cli/TARGETS
blob: 065f5bbcb33dcef85a42642f8e6cdf630553ded5 (plain)
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
122
123
{ "defaults":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["defaults"]
  , "test": ["defaults.sh"]
  , "deps": [["", "tool-under-test"]]
  }
, "pwd":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["pwd"]
  , "test": ["pwd.sh"]
  , "deps": [["", "tool-under-test"]]
  }
, "install":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["install"]
  , "test": ["install.sh"]
  , "deps": [["", "tool-under-test"]]
  }
, "analyse":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["analyse"]
  , "test": ["analyse.sh"]
  , "deps": [["", "tool-under-test"]]
  }
, "build -P":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["build-P"]
  , "test": ["build-p.sh"]
  , "deps": [["", "tool-under-test"]]
  }
, "git cas -P":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["git-cas-P"]
  , "test": ["git-cas-p.sh"]
  , "deps": [["", "mr-tool-under-test"], ["", "tool-under-test"]]
  }
, "git cas fallback":
  { "type": ["end-to-end", "with remote"]
  , "name": ["git-cas-fallback"]
  , "test": ["git-cas-fallback.sh"]
  , "deps": [["", "mr-tool-under-test"], ["", "tool-under-test"]]
  }
, "just-mr reporting":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["just-mr-reporting"]
  , "test": ["just-mr-reporting.sh"]
  , "deps": [["", "mr-tool-under-test"], ["", "tool-under-test"]]
  , "keep": ["log/warning.txt"]
  }
, "install --archive":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["install-archive"]
  , "test": ["install-archive.sh"]
  , "deps": [["", "mr-tool-under-test"], ["", "tool-under-test"]]
  , "keep": ["src.tar", "reconstructed.tar", "fromstdout.tar"]
  }
, "install archived repo":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["install-archived-repo"]
  , "test": ["install-archived-repo.sh"]
  , "deps": [["", "mr-tool-under-test"], ["", "tool-under-test"]]
  , "keep": ["src.tar", "reconstructed.tar", "fromstdout.tar"]
  }
, "conflict report":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["conflict-report"]
  , "test": ["conflict-report.sh"]
  , "deps": [["", "tool-under-test"]]
  }
, "log limit":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["log-limit"]
  , "test": ["log-limit.sh"]
  , "deps": [["", "mr-tool-under-test"], ["", "tool-under-test"]]
  }
, "describe":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["describe"]
  , "test": ["describe.sh"]
  , "deps": [["", "tool-under-test"]]
  }
, "output":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["output"]
  , "test": ["output.sh"]
  , "deps": [["", "mr-tool-under-test"], ["", "tool-under-test"]]
  , "keep": ["log"]
  }
, "cas-resolve-special":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["cas-resolve-special"]
  , "test": ["cas-resolve-special.sh"]
  , "deps": [["", "mr-tool-under-test"], ["", "tool-under-test"]]
  }
, "TESTS":
  { "type": ["@", "rules", "test", "suite"]
  , "arguments_config": ["TEST_BOOTSTRAP_JUST_MR"]
  , "stage": ["cli"]
  , "deps":
    { "type": "++"
    , "$1":
      [ [ "defaults"
        , "pwd"
        , "install"
        , "build -P"
        , "analyse"
        , "git cas -P"
        , "git cas fallback"
        , "install --archive"
        , "install archived repo"
        , "conflict report"
        , "describe"
        ]
      , { "type": "if"
        , "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
        , "then": []
        , "else":
          ["just-mr reporting", "log limit", "output", "cas-resolve-special"]
        }
      ]
    }
  }
}