From f94c981bdc3ba887b9c2c3aea90144abbc785214 Mon Sep 17 00:00:00 2001 From: john30 Date: Sat, 29 Nov 2014 20:10:57 +0100 Subject: [PATCH] use result_t, move raw logging and dumping to Port and avoid permanent open/close on ofstream --- src/lib/ebus/test/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) mode change 100644 => 100755 src/lib/ebus/test/Makefile.am diff --git a/src/lib/ebus/test/Makefile.am b/src/lib/ebus/test/Makefile.am old mode 100644 new mode 100755 index 56cdfd8c..4570f354 --- a/src/lib/ebus/test/Makefile.am +++ b/src/lib/ebus/test/Makefile.am @@ -1,7 +1,8 @@ AM_CXXFLAGS = -fpic \ -Wall \ -Wextra \ - -I$(top_srcdir)/src/lib/ebus + -I$(top_srcdir)/src/lib/ebus \ + -I$(top_srcdir)/src/lib/utils noinst_PROGRAMS = test_port \ test_symbol \ @@ -9,7 +10,8 @@ noinst_PROGRAMS = test_port \ test_message test_port_SOURCES = test_port.cpp -test_port_LDADD = $(top_srcdir)/src/lib/ebus/libebus.a +test_port_LDADD = $(top_srcdir)/src/lib/utils/libutils.a \ + $(top_srcdir)/src/lib/ebus/libebus.a test_symbol_SOURCES = test_symbol.cpp test_symbol_LDADD = $(top_srcdir)/src/lib/ebus/libebus.a