diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-03-24 13:17:00 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-04-07 16:09:43 +0200 |
commit | ef92589555e0b616bdb99df3e3b4d9ac5de627e6 (patch) | |
tree | 30271df2db581b56b9821725b37caed2539acaa0 /test/buildtool/execution_engine/executor | |
parent | 19c8f8ac038d77d9f97629504d930d85471e47bb (diff) | |
download | justbuild-ef92589555e0b616bdb99df3e3b4d9ac5de627e6.tar.gz |
Action: support tree-overlay actions
Diffstat (limited to 'test/buildtool/execution_engine/executor')
-rw-r--r-- | test/buildtool/execution_engine/executor/executor_api.test.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/buildtool/execution_engine/executor/executor_api.test.hpp b/test/buildtool/execution_engine/executor/executor_api.test.hpp index 8ec43fb0..2043da88 100644 --- a/test/buildtool/execution_engine/executor/executor_api.test.hpp +++ b/test/buildtool/execution_engine/executor/executor_api.test.hpp @@ -556,7 +556,10 @@ static inline void TestUploadAndDownloadTrees( SECTION("Dot-path non-tree as action input") { auto action_inputs = ActionDescription::inputs_t{{".", foo_desc}}; ActionDescription action_desc{ - {"foo"}, {}, Action{"action_id", {"echo"}, {}}, action_inputs}; + {"foo"}, + {}, + Action{"action_id", std::vector<std::string>{"echo"}, {}}, + action_inputs}; REQUIRE(g.Add({action_desc})); auto const* action_node = g.ActionNodeWithId("action_id"); |