diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-02-01 16:24:07 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-02-01 16:24:07 +0100 |
commit | 69d66ac41ab66a5a5da007ccfacc1d5a9d45d819 (patch) | |
tree | a6f06af7cbe3acca9dea8bfb38d17705cd158d58 /test/ctor.cc | |
parent | 1334ca42c672320cd7113cbcbc253cd93bf158b8 (diff) |
Add PointerList and EnvMap classes for working with, and propagating, argc/argv and env strings
Diffstat (limited to 'test/ctor.cc')
-rw-r--r-- | test/ctor.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/ctor.cc b/test/ctor.cc index d69b1cf..acb232f 100644 --- a/test/ctor.cc +++ b/test/ctor.cc @@ -12,6 +12,23 @@ ctor::build_configurations ctorTestConfigs(const ctor::settings& settings) { .type = ctor::target_type::unit_test, .system = ctor::output_system::build, + .target = "pointerlist_test", + .sources = { + "pointerlist_test.cc", + "testmain.cc", + "../src/pointerlist.cc", + }, + .flags = { + .cxxflags = { + "-std=c++20", "-O3", "-Wall", "-Werror", + "-I../src", "-Iuunit", + "-DOUTPUT=\"pointerlist\"", + }, + }, + }, + { + .type = ctor::target_type::unit_test, + .system = ctor::output_system::build, .target = "deps_test", .sources = { "deps_test.cc", |