summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-12-20 15:08:37 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2025-12-20 15:08:37 +0000
commit0b34bd33d9b74e51adccba4b330b0bd264a7d24c (patch)
treeaaef37fc02cbd8b70cadc6ce94e83e85f83c32b8 /test
parent28892f3d4cf6d9fb6486de5197dd6d46da706f13 (diff)
downloadwebstat-0b34bd33d9b74e51adccba4b330b0bd264a7d24c.tar.bz2
webstat-0b34bd33d9b74e51adccba4b330b0bd264a7d24c.tar.xz
webstat-0b34bd33d9b74e51adccba4b330b0bd264a7d24c.zip
Rename test utilities to avoid name conflict.
Diffstat (limited to 'test')
-rw-r--r--test/Jamfile.jam8
-rw-r--r--test/perf-ingest.cpp2
-rw-r--r--test/test-ingest.cpp2
-rw-r--r--test/testing-util.cpp (renamed from test/test-util.cpp)2
-rw-r--r--test/testing-util.hpp (renamed from test/test-util.hpp)0
5 files changed, 7 insertions, 7 deletions
diff --git a/test/Jamfile.jam b/test/Jamfile.jam
index 493c5bc..6574046 100644
--- a/test/Jamfile.jam
+++ b/test/Jamfile.jam
@@ -15,8 +15,8 @@ project WebStat-Testing : requirements
<toolset>gcc,<variant>debug:<cflags>-Wno-missing-field-initializers
;
-lib test-util :
- test-util.cpp
+lib testing-util :
+ testing-util.cpp
:
<library>..//dbpp-postgresql
;
@@ -26,7 +26,7 @@ run test-ingest.cpp :
../src/schema.sql
:
<define>BOOST_TEST_DYN_LINK
- <library>test-util
+ <library>testing-util
<library>..//dbpp-postgresql
<library>boost_unit_test_framework
<library>dbpptestcore
@@ -34,7 +34,7 @@ run test-ingest.cpp :
;
exe perf-ingest : perf-ingest.cpp :
- <library>test-util
+ <library>testing-util
<library>$(src)//webstat
<library>..//dbpp-postgresql
<library>benchmark
diff --git a/test/perf-ingest.cpp b/test/perf-ingest.cpp
index 3251107..69212de 100644
--- a/test/perf-ingest.cpp
+++ b/test/perf-ingest.cpp
@@ -1,7 +1,7 @@
#include <benchmark/benchmark.h>
#include <filesystem>
-#include "test-util.hpp"
+#include "testing-util.hpp"
#include <c++11Helpers.h>
#include <ingestor.hpp>
diff --git a/test/test-ingest.cpp b/test/test-ingest.cpp
index 9534a9f..7692234 100644
--- a/test/test-ingest.cpp
+++ b/test/test-ingest.cpp
@@ -2,7 +2,7 @@
#include <boost/test/data/test_case.hpp>
#include <boost/test/unit_test.hpp>
-#include "test-util.hpp"
+#include "testing-util.hpp"
#include <selectcommandUtil.impl.h>
#include <ingestor.hpp>
diff --git a/test/test-util.cpp b/test/testing-util.cpp
index 32c3003..010b2c6 100644
--- a/test/test-util.cpp
+++ b/test/testing-util.cpp
@@ -1,4 +1,4 @@
-#include "test-util.hpp"
+#include "testing-util.hpp"
#include <fstream>
#include <random>
diff --git a/test/test-util.hpp b/test/testing-util.hpp
index f933cba..f933cba 100644
--- a/test/test-util.hpp
+++ b/test/testing-util.hpp