diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-07-05 17:52:53 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-07-16 17:51:12 +0200 |
commit | 661d0bdb668c1cddf5d5da9e48ece0b44c4e3962 (patch) | |
tree | f40f4f8221e13f3d5783c60ef1837dfd64bb94a2 /test/buildtool/graph_traverser | |
parent | eb8d824360ce262502c5fc06072ebf07ea278bec (diff) | |
download | justbuild-661d0bdb668c1cddf5d5da9e48ece0b44c4e3962.tar.gz |
Pass LocalExecutionConfig to ApiBundle
Diffstat (limited to 'test/buildtool/graph_traverser')
-rw-r--r-- | test/buildtool/graph_traverser/graph_traverser.test.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/buildtool/graph_traverser/graph_traverser.test.hpp b/test/buildtool/graph_traverser/graph_traverser.test.hpp index c30a26a8..ae07d347 100644 --- a/test/buildtool/graph_traverser/graph_traverser.test.hpp +++ b/test/buildtool/graph_traverser/graph_traverser.test.hpp @@ -167,6 +167,7 @@ inline void SetLauncher() { Progress progress{}; ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), p.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; @@ -198,6 +199,7 @@ inline void SetLauncher() { auto const clargs_exec = p.CmdLineArgs("_entry_points_get_executable"); ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), p.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; @@ -241,6 +243,7 @@ inline void SetLauncher() { Progress progress{}; ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), p.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; @@ -278,6 +281,7 @@ inline void SetLauncher() { Progress progress{}; ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), p.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; @@ -336,6 +340,7 @@ inline void SetLauncher() { Progress progress{}; ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), full_hello_world.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; @@ -398,6 +403,7 @@ static void TestBlobsUploadedAndUsed(StorageConfig const& storage_config, Progress progress{}; ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), p.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; @@ -443,6 +449,7 @@ static void TestEnvironmentVariablesSetAndUsed( Progress progress{}; ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), p.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; @@ -487,6 +494,7 @@ static void TestTreesUsed(StorageConfig const& storage_config, Progress progress{}; ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), p.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; @@ -531,6 +539,7 @@ static void TestNestedTreesUsed(StorageConfig const& storage_config, Progress progress{}; ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), p.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; @@ -573,6 +582,7 @@ static void TestFlakyHelloWorldDetected(StorageConfig const& storage_config, Progress progress{}; ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), p.GetRepoConfig(), auth, RemoteExecutionConfig::RemoteAddress()}; |