diff options
| author | Roland Reichwein <mail@reichwein.it> | 2023-01-05 14:32:48 +0100 | 
|---|---|---|
| committer | Roland Reichwein <mail@reichwein.it> | 2023-01-05 14:32:48 +0100 | 
| commit | 455fcf0bb13baa18eac12d265ebdb743cb8815f3 (patch) | |
| tree | 90e423a556215dbadd8fe143d3a15779f3561c31 /tests/Makefile | |
| parent | 9d60b64fe684b18af5323c2b52cb26c04883db72 (diff) | |
Added tests (WIP)
Diffstat (limited to 'tests/Makefile')
| -rw-r--r-- | tests/Makefile | 15 | 
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 | 
