From: Maneesh Jain Date: Wed, 27 May 2015 06:38:06 +0000 (+0530) Subject: Add "connection_test" app in Tizen Image binary X-Git-Tag: submit/tizen/20150530.015007~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F79%2F39979%2F1;p=platform%2Fcore%2Fapi%2Fconnection.git Add "connection_test" app in Tizen Image binary 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 --- diff --git a/packaging/capi-network-connection.spec b/packaging/capi-network-connection.spec index 1b2bba8..58c0569 100644 --- a/packaging/capi-network-connection.spec +++ b/packaging/capi-network-connection.spec @@ -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 diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 7f2f801..c44ab56 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -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/)