Diff between bac2e7e1deee9f649b1d5cbe9fd918f851167da5 and dff1ad9822c4abdd0d3dc17a315d6c7ac8c93b2a

Changed Files

File Additions Deletions Status
.gitignore +1 -1 modified
Makefile.tools +4 -4 modified
tools/l2test.c +0 -0 renamed

Full Patch

diff --git a/.gitignore b/.gitignore
index 9a5a036..a5da318 100644
--- a/.gitignore
+++ b/.gitignore
@@ -47,12 +47,12 @@ tools/hcitool
 tools/hid2hci
 tools/rfcomm
 tools/l2ping
+tools/l2test
 tools/sdptool
 tools/avtest
 test/agent
 test/bdaddr
 test/hciemu
-test/l2test
 test/rctest
 test/scotest
 test/gaptest
diff --git a/Makefile.tools b/Makefile.tools
index a80b742..d910456 100644
--- a/Makefile.tools
+++ b/Makefile.tools
@@ -1,6 +1,6 @@
 
 if TOOLS
-bin_PROGRAMS += tools/rfcomm tools/l2ping \
+bin_PROGRAMS += tools/rfcomm tools/l2ping tools/l2test \
 				tools/hcitool tools/sdptool tools/ciptool
 
 bin_PROGRAMS += tools/hciattach tools/hciconfig
@@ -13,6 +13,8 @@ tools_rfcomm_LDADD = lib/libbluetooth-private.la
 
 tools_l2ping_LDADD = lib/libbluetooth-private.la
 
+tools_l2test_LDADD = lib/libbluetooth-private.la
+
 tools_hciattach_SOURCES = tools/hciattach.c tools/hciattach.h \
 						tools/hciattach_st.c \
 						tools/hciattach_ti.c \
@@ -145,7 +147,7 @@ endif
 
 
 if TEST
-bin_PROGRAMS += test/hciemu test/l2test test/rctest
+bin_PROGRAMS += test/hciemu test/rctest
 
 noinst_PROGRAMS += test/gaptest test/sdptest test/scotest \
 					test/lmptest test/bdaddr test/agent \
@@ -153,8 +155,6 @@ noinst_PROGRAMS += test/gaptest test/sdptest test/scotest \
 
 test_hciemu_LDADD = lib/libbluetooth-private.la
 
-test_l2test_LDADD = lib/libbluetooth-private.la
-
 test_rctest_LDADD = lib/libbluetooth-private.la
 
 test_gaptest_LDADD = @DBUS_LIBS@
diff --git a/test/l2test.c b/tools/l2test.c
similarity index 100%
rename from test/l2test.c
rename to tools/l2test.c