summaryrefslogtreecommitdiff
path: root/test/end-to-end/TARGETS
blob: 4959a4b488f4263f8655ed7ad50e67b98a670cd2 (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
{ "git-import-under-test":
  { "type": "install"
  , "files":
    {"bin/git-import-under-test": ["@", "src", "", "bin/just-import-git.py"]}
  }
, "deduplicate-tool-under-test":
  { "type": "install"
  , "files":
    { "bin/deduplicate-tool-under-test":
      ["@", "src", "", "bin/just-deduplicate-repos.py"]
    }
  }
, "lock-tool-under-test":
  { "type": "install"
  , "files": {"bin/lock-tool-under-test": ["@", "src", "", "bin/just-lock.py"]}
  }
, "remote tests (unconfigured)":
  { "type": ["@", "rules", "test", "suite"]
  , "arguments_config": ["TEST_COMPATIBLE_REMOTE", "TEST_BOOTSTRAP_JUST_MR"]
  , "stage":
    [ { "type": "if"
      , "cond": {"type": "var", "name": "TEST_COMPATIBLE_REMOTE"}
      , "then": "compatible"
      , "else": "native"
      }
    ]
  , "deps":
    { "type": "++"
    , "$1":
      [ [["./", "remote-execution", "TESTS"], ["./", "just-mr", "TESTS"]]
      , { "type": "if"
        , "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
        , "then": []
        , "else":
          [ ["./", "serve-service", "TESTS"]
          , ["./", "computed-roots", "TESTS"]
          , ["./", "tree-structure", "TESTS"]
          ]
        }
      ]
    }
  }
, "remote tests, compatible":
  { "type": "configure"
  , "tainted": ["test"]
  , "target": "remote tests (unconfigured)"
  , "config":
    {"type": "singleton_map", "key": "TEST_COMPATIBLE_REMOTE", "value": true}
  }
, "remote tests, native":
  { "type": "configure"
  , "tainted": ["test"]
  , "target": "remote tests (unconfigured)"
  , "config":
    {"type": "singleton_map", "key": "TEST_COMPATIBLE_REMOTE", "value": false}
  }
, "remote tests":
  { "type": ["@", "rules", "test", "suite"]
  , "stage": ["using-remote"]
  , "deps": ["remote tests, compatible", "remote tests, native"]
  }
, "TESTS":
  { "type": ["@", "rules", "test", "suite"]
  , "arguments_config": ["TEST_BOOTSTRAP_JUST_MR"]
  , "stage": ["end-to-end"]
  , "deps":
    { "type": "`"
    , "$1":
      [ "remote tests"
      , ["./", "actions", "TESTS"]
      , ["./", "build-fails", "TESTS"]
      , ["./", "built-in-rules", "TESTS"]
      , ["./", "cli", "TESTS"]
      , ["./", "execution-service", "TESTS"]
      , ["./", "gc", "TESTS"]
      , ["./", "generated-binary", "TESTS"]
      , ["./", "git-import", "TESTS"]
      , ["./", "just-lock", "TESTS"]
      , { "type": ",@"
        , "$1":
          { "type": "if"
          , "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
          , "else": [["./", "profile", "TESTS"]]
          }
        }
      , ["./", "symlinks", "TESTS"]
      , ["./", "target-cache", "TESTS"]
      , ["./", "target-tests", "TESTS"]
      , ["./", "user-errors", "TESTS"]
      ]
    }
  }
}