File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11CXX = clang++
2- CXXFLAGS = -g -std=c++11 -I. -Wall -Wextra -Wtype-limits -Wconversion -Wshadow $(EXTRA_CXXFLAGS ) # -fno-exceptions -DCPPHTTPLIB_NO_EXCEPTIONS -fsanitize=address
2+ CXXFLAGS = -g -std=c++11 -I. -Wall -Wextra -Wtype-limits -Wconversion -Wshadow -fsanitize=address $(EXTRA_CXXFLAGS ) # -fno-exceptions -DCPPHTTPLIB_NO_EXCEPTIONS -fsanitize=address
33
44PREFIX ?= $(shell brew --prefix)
55
Original file line number Diff line number Diff line change @@ -8485,8 +8485,8 @@ TEST(ClientInThreadTest, Issue2068) {
84858485#endif
84868486#endif
84878487
8488- // No death tests on Windows
8489- #ifndef _WIN32
8488+ // No death tests on Windows and unreliable without ASan
8489+ #if ASAN_ENABLED && !defined( _WIN32)
84908490bool KilledByAbortOrSegfault (int exit_status) {
84918491 return
84928492#if ASAN_ENABLED
You can’t perform that action at this time.
0 commit comments