summaryrefslogtreecommitdiff
path: root/test/TARGETS
blob: 885bb26c6ddaa3026e12d55e733899a939d34ddb (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
{ "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"]
  }
, "bootstrap-test":
  { "type": ["@", "rules", "shell/test", "script"]
  , "name": ["bootstrap-test"]
  , "test": ["test-bootstrap.sh"]
  , "deps": [["", "bootstrap-src"], ["@", "just-distfiles", "", "distdir"]]
  }
}