diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-07-17 10:28:00 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-07-19 09:50:37 +0200 |
commit | 31b782119138859c29ac8ff54bcfe19aa00fca42 (patch) | |
tree | 9d679a73ae3dbfc190c77fcabcfa95f47cb1f1a5 /test/buildtool/execution_engine/executor/executor.test.cpp | |
parent | 616cd734e76b7f4c9666bbaeaa6820fa9980816d (diff) | |
download | justbuild-31b782119138859c29ac8ff54bcfe19aa00fca42.tar.gz |
Pass RetryConfig instance to Executor
Diffstat (limited to 'test/buildtool/execution_engine/executor/executor.test.cpp')
-rw-r--r-- | test/buildtool/execution_engine/executor/executor.test.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp index f58f4ef4..5d3a1b6e 100644 --- a/test/buildtool/execution_engine/executor/executor.test.cpp +++ b/test/buildtool/execution_engine/executor/executor.test.cpp @@ -289,6 +289,7 @@ TEST_CASE("Executor: Process artifact", "[executor]") { /*properties=*/{}, /*dispatch_list=*/{}, &auth, + &RetryConfig::Instance(), &stats, &progress}; @@ -309,6 +310,7 @@ TEST_CASE("Executor: Process artifact", "[executor]") { /*properties=*/{}, /*dispatch_list=*/{}, &auth, + &RetryConfig::Instance(), &stats, &progress}; @@ -329,6 +331,7 @@ TEST_CASE("Executor: Process artifact", "[executor]") { /*properties=*/{}, /*dispatch_list=*/{}, &auth, + &RetryConfig::Instance(), &stats, &progress}; @@ -370,6 +373,7 @@ TEST_CASE("Executor: Process action", "[executor]") { /*properties=*/{}, /*dispatch_list=*/{}, &auth, + &RetryConfig::Instance(), &stats, &progress}; @@ -393,6 +397,7 @@ TEST_CASE("Executor: Process action", "[executor]") { /*properties=*/{}, /*dispatch_list=*/{}, &auth, + &RetryConfig::Instance(), &stats, &progress}; @@ -416,6 +421,7 @@ TEST_CASE("Executor: Process action", "[executor]") { /*properties=*/{}, /*dispatch_list=*/{}, &auth, + &RetryConfig::Instance(), &stats, &progress}; @@ -442,6 +448,7 @@ TEST_CASE("Executor: Process action", "[executor]") { /*properties=*/{}, /*dispatch_list=*/{}, &auth, + &RetryConfig::Instance(), &stats, &progress}; @@ -465,6 +472,7 @@ TEST_CASE("Executor: Process action", "[executor]") { /*properties=*/{}, /*dispatch_list=*/{}, &auth, + &RetryConfig::Instance(), &stats, &progress}; @@ -491,6 +499,7 @@ TEST_CASE("Executor: Process action", "[executor]") { /*properties=*/{}, /*dispatch_list=*/{}, &auth, + &RetryConfig::Instance(), &stats, &progress}; |