File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ all : server_fuzzer
19
19
20
20
# Fuzz target, so that you can choose which $(LIB_FUZZING_ENGINE) to use.
21
21
server_fuzzer : server_fuzzer.cc ../../httplib.h
22
- $(CXX ) $(CXXFLAGS ) -o $@ $< -Wl,-Bstatic $(OPENSSL_SUPPORT ) -Wl,-Bdynamic -ldl $(ZLIB_SUPPORT ) $(LIB_FUZZING_ENGINE ) -pthread
22
+ # $(CXX) $(CXXFLAGS) -o $@ $< -Wl,-Bstatic $(OPENSSL_SUPPORT) -Wl,-Bdynamic -ldl $(ZLIB_SUPPORT) $(LIB_FUZZING_ENGINE) -pthread
23
+ $(CXX) $(CXXFLAGS) -o $@ $< $(ZLIB_SUPPORT) $(LIB_FUZZING_ENGINE) -pthread
23
24
zip -q -r server_fuzzer_seed_corpus.zip corpus
24
25
25
26
clean :
Original file line number Diff line number Diff line change @@ -1974,8 +1974,7 @@ TEST_F(ServerTest, ClientStop) {
1974
1974
}));
1975
1975
}
1976
1976
1977
- std::this_thread::sleep_for (std::chrono::seconds (1 ));
1978
-
1977
+ std::this_thread::sleep_for (std::chrono::seconds (2 ));
1979
1978
while (cli_.is_socket_open ()) {
1980
1979
cli_.stop ();
1981
1980
std::this_thread::sleep_for (std::chrono::milliseconds (10 ));
You can’t perform that action at this time.
0 commit comments