summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2023-01-11 17:47:30 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2023-01-11 17:47:30 +0100
commit75d1fa7244b9c5cddae056a281f457dd1e81cfb2 (patch)
tree7a01afcc48a52ec500e0ede5dabaa517c952c7f1 /test
parent1484d74c1dfd24cfe5b6f13f76d58ff395e4d253 (diff)
Rename TargetType::Xyz to target_type::xyz
Diffstat (limited to 'test')
-rw-r--r--test/ctor.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/ctor.cc b/test/ctor.cc
index 1a63486..fcb275d 100644
--- a/test/ctor.cc
+++ b/test/ctor.cc
@@ -10,7 +10,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings)
return
{
{
- .type = ctor::TargetType::UnitTest,
+ .type = ctor::target_type::unit_test,
.target = "execute_test",
.sources = {
"execute_test.cc",
@@ -27,7 +27,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings)
},
},
{
- .type = ctor::TargetType::UnitTest,
+ .type = ctor::target_type::unit_test,
.target = "tasks_test",
.sources = {
"tasks_test.cc",
@@ -44,7 +44,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings)
},
},
{
- .type = ctor::TargetType::UnitTest,
+ .type = ctor::target_type::unit_test,
.target = "source_type_test",
.sources = {
"source_type_test.cc",
@@ -61,7 +61,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings)
},
},
{
- .type = ctor::TargetType::UnitTest,
+ .type = ctor::target_type::unit_test,
.target = "tools_test",
.sources = {
"tools_test.cc",
@@ -78,7 +78,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings)
},
},
{
- .type = ctor::TargetType::UnitTestLib,
+ .type = ctor::target_type::unit_test_library,
.target = "libctor_nomain.a",
.sources = {
"../src/build.cc",