summaryrefslogtreecommitdiff
path: root/test/buildtool/execution_engine
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2024-08-20 14:51:37 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2024-08-21 10:13:26 +0200
commit9a207552ae215473f5af7d6336937dcd4bc843ce (patch)
tree443b22cd7341ea6e0dbd94b665573154188927df /test/buildtool/execution_engine
parenta6267537ff9e0a4d1966d285cdae302e38d888b8 (diff)
downloadjustbuild-9a207552ae215473f5af7d6336937dcd4bc843ce.tar.gz
tests: use newly defined test suite
... so that linting information gets propagated properly.
Diffstat (limited to 'test/buildtool/execution_engine')
-rw-r--r--test/buildtool/execution_engine/TARGETS12
-rw-r--r--test/buildtool/execution_engine/dag/TARGETS3
-rw-r--r--test/buildtool/execution_engine/executor/TARGETS4
-rw-r--r--test/buildtool/execution_engine/traverser/TARGETS6
4 files changed, 15 insertions, 10 deletions
diff --git a/test/buildtool/execution_engine/TARGETS b/test/buildtool/execution_engine/TARGETS
index 5b8b499d..4cb22944 100644
--- a/test/buildtool/execution_engine/TARGETS
+++ b/test/buildtool/execution_engine/TARGETS
@@ -1,10 +1,10 @@
{ "TESTS":
- { "type": "install"
- , "tainted": ["test"]
- , "dirs":
- [ [["./", "dag", "TESTS"], "dag"]
- , [["./", "executor", "TESTS"], "executor"]
- , [["./", "traverser", "TESTS"], "traverser"]
+ { "type": ["@", "rules", "test", "suite"]
+ , "stage": ["execution_engine"]
+ , "deps":
+ [ ["./", "dag", "TESTS"]
+ , ["./", "executor", "TESTS"]
+ , ["./", "traverser", "TESTS"]
]
}
}
diff --git a/test/buildtool/execution_engine/dag/TARGETS b/test/buildtool/execution_engine/dag/TARGETS
index 7b30cab4..1baf9f0e 100644
--- a/test/buildtool/execution_engine/dag/TARGETS
+++ b/test/buildtool/execution_engine/dag/TARGETS
@@ -14,5 +14,6 @@
]
, "stage": ["test", "buildtool", "execution_engine", "dag"]
}
-, "TESTS": {"type": "install", "tainted": ["test"], "deps": ["dag"]}
+, "TESTS":
+ {"type": ["@", "rules", "test", "suite"], "stage": ["dag"], "deps": ["dag"]}
}
diff --git a/test/buildtool/execution_engine/executor/TARGETS b/test/buildtool/execution_engine/executor/TARGETS
index 39a2c3de..bbdccc7c 100644
--- a/test/buildtool/execution_engine/executor/TARGETS
+++ b/test/buildtool/execution_engine/executor/TARGETS
@@ -108,8 +108,8 @@
, "stage": ["test", "buildtool", "execution_engine", "executor"]
}
, "TESTS":
- { "type": "install"
- , "tainted": ["test"]
+ { "type": ["@", "rules", "test", "suite"]
+ , "stage": ["executor"]
, "deps": ["executor", "local", "remote_bazel"]
}
}
diff --git a/test/buildtool/execution_engine/traverser/TARGETS b/test/buildtool/execution_engine/traverser/TARGETS
index 02294710..821c4bc8 100644
--- a/test/buildtool/execution_engine/traverser/TARGETS
+++ b/test/buildtool/execution_engine/traverser/TARGETS
@@ -13,5 +13,9 @@
]
, "stage": ["test", "buildtool", "execution_engine", "traverser"]
}
-, "TESTS": {"type": "install", "tainted": ["test"], "deps": ["traverser"]}
+, "TESTS":
+ { "type": ["@", "rules", "test", "suite"]
+ , "stage": ["traverser"]
+ , "deps": ["traverser"]
+ }
}