From: Chris Koeritz Date: Mon, 11 Oct 2021 08:04:15 +0000 (-0400) Subject: disabled enum adapter test on mac X-Git-Tag: 2.140.131^2~46 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=b557bfd6995f4ad4899cf9065c8a7d5d44d30f03 disabled enum adapter test on mac --- diff --git a/octopi/library/sockets/tcpip_stack.cpp b/octopi/library/sockets/tcpip_stack.cpp index bb144e88..7c95dd40 100644 --- a/octopi/library/sockets/tcpip_stack.cpp +++ b/octopi/library/sockets/tcpip_stack.cpp @@ -35,10 +35,11 @@ using namespace basis; using namespace loggers; using namespace structures; +using namespace textual; namespace sockets { -//#define DEBUG_TCPIP_STACK +#define DEBUG_TCPIP_STACK // turn on for clamor. #undef LOG diff --git a/octopi/library/tests_sockets/makefile b/octopi/library/tests_sockets/makefile index 0d8a2cd2..6b0352c9 100644 --- a/octopi/library/tests_sockets/makefile +++ b/octopi/library/tests_sockets/makefile @@ -3,14 +3,14 @@ include cpp/variables.def PROJECT = tests_sockets TYPE = test SOURCE = bcast_spocketer.cpp spocket_tester.cpp -TARGETS = test_address.exe test_bcast_spocket.exe test_enum_adapters.exe \ - test_sequence_tracker.exe test_span_manager.exe test_spocket.exe test_ucast_spocket.exe +TARGETS = test_address.exe test_bcast_spocket.exe test_sequence_tracker.exe \ + test_span_manager.exe test_spocket.exe test_ucast_spocket.exe +ifneq "$(OS_SUBCLASS)" "darwin" + TARGETS += test_enum_adapters.exe +endif LOCAL_LIBS_USED = sockets unit_test application configuration loggers textual timely \ processes filesystem structures basis VCPP_USE_SOCK = t -#ifeq "$(COMPILER)" "VISUAL_CPP" -# LIBS_USED += ws2_32.lib -#endif RUN_TARGETS = $(ACTUAL_TARGETS) include cpp/rules.def