summaryrefslogtreecommitdiff
path: root/test/buildtool/execution_engine
diff options
context:
space:
mode:
Diffstat (limited to 'test/buildtool/execution_engine')
-rw-r--r--test/buildtool/execution_engine/executor/executor.test.cpp4
-rw-r--r--test/buildtool/execution_engine/traverser/traverser.test.cpp16
2 files changed, 10 insertions, 10 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp
index 7eeee78f..59b06648 100644
--- a/test/buildtool/execution_engine/executor/executor.test.cpp
+++ b/test/buildtool/execution_engine/executor/executor.test.cpp
@@ -52,7 +52,7 @@ struct TestApiConfig {
struct TestExecutionConfig {
bool failed{};
- std::vector<std::string> outputs{};
+ std::vector<std::string> outputs;
};
struct TestResponseConfig {
@@ -60,7 +60,7 @@ struct TestApiConfig {
int exit_code{};
};
- std::unordered_map<std::string, TestArtifactConfig> artifacts{};
+ std::unordered_map<std::string, TestArtifactConfig> artifacts;
TestExecutionConfig execution;
TestResponseConfig response;
};
diff --git a/test/buildtool/execution_engine/traverser/traverser.test.cpp b/test/buildtool/execution_engine/traverser/traverser.test.cpp
index 3fb57871..a6fb2c85 100644
--- a/test/buildtool/execution_engine/traverser/traverser.test.cpp
+++ b/test/buildtool/execution_engine/traverser/traverser.test.cpp
@@ -95,11 +95,11 @@ class TestBuildInfo {
}
private:
- std::unordered_set<ArtifactIdentifier> correctly_built_{};
- std::unordered_set<ArtifactIdentifier> incorrectly_built_{};
- std::unordered_set<ArtifactIdentifier> artifacts_uploaded_{};
- std::unordered_set<ArtifactIdentifier> uploaded_more_than_once_{};
- std::string name_{};
+ std::unordered_set<ArtifactIdentifier> correctly_built_;
+ std::unordered_set<ArtifactIdentifier> incorrectly_built_;
+ std::unordered_set<ArtifactIdentifier> artifacts_uploaded_;
+ std::unordered_set<ArtifactIdentifier> uploaded_more_than_once_;
+ std::string name_;
std::mutex mutex_;
};
@@ -218,9 +218,9 @@ class TestProject {
}
private:
- std::vector<ActionDescription> graph_full_description_{};
- std::unordered_set<ArtifactIdentifier> artifacts_to_be_built_{};
- std::unordered_set<ArtifactIdentifier> local_artifacts_{};
+ std::vector<ActionDescription> graph_full_description_;
+ std::unordered_set<ArtifactIdentifier> artifacts_to_be_built_;
+ std::unordered_set<ArtifactIdentifier> local_artifacts_;
};
} // namespace