summaryrefslogtreecommitdiffhomepage
path: root/tests/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-05 14:32:48 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-05 14:32:48 +0100
commit455fcf0bb13baa18eac12d265ebdb743cb8815f3 (patch)
tree90e423a556215dbadd8fe143d3a15779f3561c31 /tests/Makefile
parent9d60b64fe684b18af5323c2b52cb26c04883db72 (diff)
Added tests (WIP)
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile15
1 files changed, 11 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 4522952..00c50a1 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -44,8 +44,19 @@ UNITS=\
webserver.cpp
TESTSRC=\
+ test-archive.cpp \
+ test-auth.cpp \
+ test-config.cpp \
test-environment.cpp \
+ test-http.cpp \
+ test-https.cpp \
+ test-plugin.cpp \
+ test-privileges.cpp \
+ test-response.cpp \
+ test-server.cpp \
+ test-statistics.cpp \
test-webserver.cpp \
+
$(PROGSRC)
build: $(PROJECTNAME)
@@ -71,16 +82,12 @@ dep: $(TESTSRC:.cpp=.d)
auth.o: ../auth.cpp
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
-base64.o: ../base64.cpp
- $(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
config.o: ../config.cpp
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
http.o: ../http.cpp
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
https.o: ../https.cpp
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
-os.o: ../os.cpp
- $(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
plugin.o: ../plugin.cpp
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
privileges.o: ../privileges.cpp