summaryrefslogtreecommitdiff
path: root/test/TARGETS
blob: 3f572f53089e08138eece02920877a9e1b799667 (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
{ "catch-main":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["catch-main"]
  , "srcs": ["main.cpp"]
  , "deps": [["@", "catch2", "", "catch2"], ["test/utils", "log_config"]]
  , "stage": ["test"]
  }
, "TESTS":
  { "type": "install"
  , "tainted": ["test"]
  , "dirs":
    [ [["./", "buildtool", "TESTS"], "buildtool"]
    , [["./", "utils", "TESTS"], "utils"]
    , [["./", "end-to-end", "TESTS"], "end-to-end"]
    ]
  }
, "ALL":
  { "type": ["@", "rules", "CC", "configure"]
  , "tainted": ["test"]
  , "arguments_config": ["OS", "ARCH"]
  , "os": [{"type": "var", "name": "OS", "default": "linux"}]
  , "arch": [{"type": "var", "name": "ARCH", "default": "x86_64"}]
  , "target_arch":
    [ { "type": "var"
      , "name": "TARGET_ARCH"
      , "default": {"type": "var", "name": "ARCH", "default": "x86_64"}
      }
    ]
  , "compiler_family":
    [{"type": "var", "name": "COMPILER_FAMILY", "default": "clang"}]
  , "target": ["TESTS"]
  }
, "bootstrap-test":
  { "type": "install"
  , "tainted": ["test"]
  , "deps": [["./", "bootstrap", "TESTS"]]
  }
}