1
0
mirror of synced 2025-07-02 20:02:24 +03:00

Launch proxy server before proxy test

This commit is contained in:
yhirose
2025-06-29 00:17:19 -04:00
parent ea850cbfa7
commit 7c303bb871

View File

@ -48,7 +48,15 @@ all : test test_split
./test
proxy : test_proxy
./test_proxy
@echo "Starting proxy server..."
cd proxy && \
docker-compose up -d
@echo "Running proxy tests..."
./test_proxy; \
exit_code=$$?; \
echo "Stopping proxy server..."; \
docker-compose down; \
exit $$exit_code
test : test.cc include_httplib.cc ../httplib.h Makefile cert.pem
$(CXX) -o $@ -I.. $(CXXFLAGS) test.cc include_httplib.cc $(TEST_ARGS)