From 88edc0e75ab777869980f8f3494561dac3675236 Mon Sep 17 00:00:00 2001 From: InHong Han Date: Mon, 16 May 2022 14:43:49 +0900 Subject: [PATCH] Add exclude section for impossible lines to be excuted in TCT Change-Id: I917bc5167a5d6dfbe223ab64d8dbfd07ce3729b8 --- inputmethod/src/inputmethod.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inputmethod/src/inputmethod.cpp b/inputmethod/src/inputmethod.cpp index 40664a8..ef4ac26 100644 --- a/inputmethod/src/inputmethod.cpp +++ b/inputmethod/src/inputmethod.cpp @@ -1567,6 +1567,7 @@ EXPORT_API int ime_set_size(int portrait_width, int portrait_height, int landsca //LCOV_EXCL_STOP } +//LCOV_EXCL_START EXPORT_API int ime_set_native_window_size(Ecore_Wl2_Window *window, int portrait_width, int portrait_height, int landscape_width, int landscape_height) { ime_error_e retVal = IME_ERROR_NONE; @@ -1581,7 +1582,6 @@ EXPORT_API int ime_set_native_window_size(Ecore_Wl2_Window *window, int portrait return IME_ERROR_NOT_RUNNING; } - //LCOV_EXCL_START retVal = _check_privilege(); if (retVal != IME_ERROR_NONE) return retVal; @@ -1591,8 +1591,8 @@ EXPORT_API int ime_set_native_window_size(Ecore_Wl2_Window *window, int portrait ecore_wl2_window_rotation_geometry_set(window, 270, 0, 0, landscape_height, landscape_width); return IME_ERROR_NONE; - //LCOV_EXCL_STOP } +//LCOV_EXCL_STOP EXPORT_API int ime_create_option_window(void) { -- 2.7.4