[ITC][device][Non-ACR][updated native_common_iot file for device apis]
authorNibha Sharma <nibha.sharma@samsung.com>
Mon, 11 Jul 2016 06:23:52 +0000 (15:23 +0900)
committerNibha Sharma <nibha.sharma@samsung.com>
Mon, 11 Jul 2016 06:23:52 +0000 (15:23 +0900)
Change-Id: I2759e043da6b7d59bc394bbb62c34a2786c3522b
Signed-off-by: Nibha Sharma <nibha.sharma@samsung.com>
src/itc/device/CMakeLists.txt
src/itc/device/tct-device-native_common_iot.h

index ab969ec..6b24074 100755 (executable)
@@ -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()
index e3aae9e..9804b99 100755 (executable)
@@ -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}
 };