disabled enum adapter test on mac
authorChris Koeritz <cak0l@virginia.edu>
Mon, 11 Oct 2021 08:04:15 +0000 (04:04 -0400)
committerChris Koeritz <cak0l@virginia.edu>
Mon, 11 Oct 2021 08:04:15 +0000 (04:04 -0400)
octopi/library/sockets/tcpip_stack.cpp
octopi/library/tests_sockets/makefile

index bb144e8859a84d3b077c81292d668f8104c552ab..7c95dd40b8563068d454f69b8ede6eb96addd5a1 100644 (file)
 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
index 0d8a2cd225e842dec6c6f94935614974d7831454..6b0352c9104cdf73ba053013c644ef4c3db398ee 100644 (file)
@@ -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