From 84983ed0b88353dd20c0f1dfecdcbc786a6d5a97 Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Sat, 25 Apr 2026 00:30:12 +0000 Subject: [PATCH] Fix native helper test discovery --- test/{helpers => test_helpers}/test_advert_data.cpp | 0 test/test_helpers/test_main.cpp | 6 ++++++ 2 files changed, 6 insertions(+) rename test/{helpers => test_helpers}/test_advert_data.cpp (100%) create mode 100644 test/test_helpers/test_main.cpp diff --git a/test/helpers/test_advert_data.cpp b/test/test_helpers/test_advert_data.cpp similarity index 100% rename from test/helpers/test_advert_data.cpp rename to test/test_helpers/test_advert_data.cpp diff --git a/test/test_helpers/test_main.cpp b/test/test_helpers/test_main.cpp new file mode 100644 index 000000000..697a9d70c --- /dev/null +++ b/test/test_helpers/test_main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char** argv) { + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +}