summaryrefslogtreecommitdiff
path: root/test/ctor.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2023-01-10 16:00:36 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2023-01-11 17:13:24 +0100
commit1484d74c1dfd24cfe5b6f13f76d58ff395e4d253 (patch)
tree2f71f2aa6d6dd29eda51924f985de7f9caee78c0 /test/ctor.cc
parentf31661d392c1332ceb0edcbc9fd35f4cb49bb50d (diff)
Put ctor.h contents in ctor namespace.
Diffstat (limited to 'test/ctor.cc')
-rw-r--r--test/ctor.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/ctor.cc b/test/ctor.cc
index 89a94b9..1a63486 100644
--- a/test/ctor.cc
+++ b/test/ctor.cc
@@ -5,12 +5,12 @@
namespace
{
-BuildConfigurations ctorTestConfigs(const Settings& settings)
+ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings)
{
return
{
{
- .type = TargetType::UnitTest,
+ .type = ctor::TargetType::UnitTest,
.target = "execute_test",
.sources = {
"execute_test.cc",
@@ -27,7 +27,7 @@ BuildConfigurations ctorTestConfigs(const Settings& settings)
},
},
{
- .type = TargetType::UnitTest,
+ .type = ctor::TargetType::UnitTest,
.target = "tasks_test",
.sources = {
"tasks_test.cc",
@@ -44,7 +44,7 @@ BuildConfigurations ctorTestConfigs(const Settings& settings)
},
},
{
- .type = TargetType::UnitTest,
+ .type = ctor::TargetType::UnitTest,
.target = "source_type_test",
.sources = {
"source_type_test.cc",
@@ -61,7 +61,7 @@ BuildConfigurations ctorTestConfigs(const Settings& settings)
},
},
{
- .type = TargetType::UnitTest,
+ .type = ctor::TargetType::UnitTest,
.target = "tools_test",
.sources = {
"tools_test.cc",
@@ -78,7 +78,7 @@ BuildConfigurations ctorTestConfigs(const Settings& settings)
},
},
{
- .type = TargetType::UnitTestLib,
+ .type = ctor::TargetType::UnitTestLib,
.target = "libctor_nomain.a",
.sources = {
"../src/build.cc",