From: Nibha Sharma Date: Mon, 11 Jul 2016 06:23:52 +0000 (+0900) Subject: [ITC][device][Non-ACR][updated native_common_iot file for device apis] X-Git-Tag: Public_Final_RC6~627 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=44675860e65c42f5461b9450233b940c9c664825;p=test%2Ftct%2Fnative%2Fapi.git [ITC][device][Non-ACR][updated native_common_iot file for device apis] Change-Id: I2759e043da6b7d59bc394bbb62c34a2786c3522b Signed-off-by: Nibha Sharma --- diff --git a/src/itc/device/CMakeLists.txt b/src/itc/device/CMakeLists.txt index ab969ec..6b24074 100755 --- a/src/itc/device/CMakeLists.txt +++ b/src/itc/device/CMakeLists.txt @@ -22,10 +22,7 @@ IF( DEFINED COMMON_IOT ) SET(TC_SOURCES ITs-device.c ITs-device-common.c - ITs-device_haptic.c - ITs-device_battery.c ITs-device_display.c - ITs-device_led.c ITs-device_power.c ) ENDIF() diff --git a/src/itc/device/tct-device-native_common_iot.h b/src/itc/device/tct-device-native_common_iot.h index e3aae9e..9804b99 100755 --- a/src/itc/device/tct-device-native_common_iot.h +++ b/src/itc/device/tct-device-native_common_iot.h @@ -23,8 +23,6 @@ extern void ITs_device_display_startup(void); extern void ITs_device_display_cleanup(void); extern void ITs_device_power_startup(void); extern void ITs_device_power_cleanup(void); -extern void ITs_device_battery_startup(void); -extern void ITs_device_battery_cleanup(void); extern int ITc_device_display_get_numbers_p(void); extern int ITc_device_display_get_max_brightness_p(void); @@ -32,10 +30,6 @@ extern int ITc_device_display_set_get_brightness_p(void); extern int ITc_device_display_change_get_state_p(void); extern int ITc_device_power_request_release_lock_p(void); extern int ITc_power_wakeup_p(void); -extern int ITc_device_battery_get_health_p(void); -extern int ITc_device_battery_get_power_source_p(void); -extern int ITc_device_battery_get_property_p(void); -extern int ITc_device_battery_get_status_p(void); testcase tc_array[] = { {"ITc_device_display_get_numbers_p", ITc_device_display_get_numbers_p, ITs_device_display_startup, ITs_device_display_cleanup}, @@ -44,10 +38,6 @@ testcase tc_array[] = { {"ITc_device_display_change_get_state_p", ITc_device_display_change_get_state_p, ITs_device_display_startup, ITs_device_display_cleanup}, {"ITc_device_power_request_release_lock_p", ITc_device_power_request_release_lock_p, ITs_device_power_startup, ITs_device_power_cleanup}, {"ITc_power_wakeup_p", ITc_power_wakeup_p, ITs_device_power_startup, ITs_device_power_cleanup}, - {"ITc_device_battery_get_health_p", ITc_device_battery_get_health_p, ITs_device_battery_startup, ITs_device_battery_cleanup}, - {"ITc_device_battery_get_power_source_p", ITc_device_battery_get_power_source_p, ITs_device_battery_startup, ITs_device_battery_cleanup}, - {"ITc_device_battery_get_property_p", ITc_device_battery_get_property_p, ITs_device_battery_startup, ITs_device_battery_cleanup}, - {"ITc_device_battery_get_status_p", ITc_device_battery_get_status_p, ITs_device_battery_startup, ITs_device_battery_cleanup}, {NULL, NULL} };