Add "connection_test" app in Tizen Image binary 79/39979/1
authorManeesh Jain <maneesh.jain@samsung.com>
Wed, 27 May 2015 06:38:06 +0000 (12:08 +0530)
committerManeesh Jain <maneesh.jain@samsung.com>
Wed, 27 May 2015 06:38:06 +0000 (12:08 +0530)
This patch adds the Connection test application in
Tizen Binary Image. It is required to validate the
Network Connection CAPI's without using UI application

Change-Id: I3801014af5325fd27d37f628bf76eadb92eeaa67
Signed-off-by: Maneesh Jain <maneesh.jain@samsung.com>
packaging/capi-network-connection.spec
test/CMakeLists.txt

index 1b2bba8..58c0569 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-network-connection
 Summary:    Network Connection library in TIZEN C API
-Version:    0.1.3_21
+Version:    0.1.3_22
 Release:    1
 Group:      System/Network
 License:    Apache-2.0
@@ -53,6 +53,7 @@ cp LICENSE.APLv2 %{buildroot}%{_datadir}/license/capi-network-connection
 %manifest %{name}.manifest
 %attr(644,-,-) %{_libdir}/libcapi-network-connection.so.*
 %{_datadir}/license/capi-network-connection
+%{_bindir}/connection_test
 
 %files devel
 %manifest %{name}.manifest
index 7f2f801..c44ab56 100644 (file)
@@ -17,3 +17,5 @@ FOREACH(src ${sources})
     ADD_EXECUTABLE(${src_name} ${src})
     TARGET_LINK_LIBRARIES(${src_name} ${fw_name} ${${fw_test}_LDFLAGS})
 ENDFOREACH()
+
+INSTALL(TARGETS connection_test RUNTIME DESTINATION bin/)