summaryrefslogtreecommitdiff
path: root/test/TARGETS
blob: 27a269d468fb5932f6a99a08bc06854be5535991 (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
{ "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": ["TESTS"]
  }
}