CC ?= gcc
-TARGETS = utc_elm_actionslider_add_func \
- utc_elm_actionslider_indicator_pos_set_func \
- utc_elm_actionslider_magnet_pos_set_func \
- utc_elm_actionslider_label_set_func \
- utc_elm_actionslider_hold_func
+TARGETS = utc_UIFW_elm_actionslider_add_func \
+ utc_UIFW_elm_actionslider_indicator_pos_set_func \
+ utc_UIFW_elm_actionslider_magnet_pos_set_func \
+ utc_UIFW_elm_actionslider_label_set_func \
+ utc_UIFW_elm_actionslider_hold_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
*/
static void utc_UIFW_elm_actionslider_hold_func_02(void)
{
- elm_actionslider_hold(actionslider, NULL);
+ elm_actionslider_hold(NULL, EINA_FALSE);
tet_result(TET_PASS);
}
utc_UIFW_elm_button_label_get_for_state_func \
utc_UIFW_elm_button_icon_set_func \
utc_UIFW_elm_button_icon_get_func \
- utc_UIFW_elm_button_auto_repeat_set_func \
+ utc_UIFW_elm_button_autorepeat_set_func \
utc_UIFW_elm_button_autorepeat_initial_timeout_set_func \
utc_UIFW_elm_button_autorepeat_gap_timeout_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_calendar_format_function_set_func \
utc_UIFW_elm_calendar_mark_del_func \
utc_UIFW_elm_calendar_marks_clear_func \
- utc_UIFW_elm_calendar_marks_draw_func \
- utc_UIFW_elm_calendar_text_weekday_color_set_func \
- utc_UIFW_elm_calendar_text_sunday_color_set_func
+ utc_UIFW_elm_calendar_marks_draw_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
+ rm -f tet_captured
+ rm -f tet_lock
+ rm -f *~
/elm_ts/calendar/utc_UIFW_elm_calendar_mark_del_func
/elm_ts/calendar/utc_UIFW_elm_calendar_marks_clear_func
/elm_ts/calendar/utc_UIFW_elm_calendar_marks_draw_func
-/elm_ts/calendar/utc_UIFW_elm_calendar_text_weekday_color_set_func
-/elm_ts/calendar/utc_UIFW_elm_calendar_text_saturday_color_set_func
-/elm_ts/calendar/utc_UIFW_elm_calendar_text_sunday_color_set_func
+++ /dev/null
-#include <tet_api.h>
-#include <Elementary.h>
-
-// Definitions
-// For checking the result of the positive test case.
-#define TET_CHECK_PASS(x1, y...) \
-{ \
- Evas_Object *err = y; \
- if (err == (x1)) \
- { \
- tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
- tet_result(TET_FAIL); \
- return; \
- } \
-}
-
-// For checking the result of the negative test case.
-#define TET_CHECK_FAIL(x1, y...) \
-{ \
- Evas_Object *err = y; \
- if (err != (x1)) \
- { \
- tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
- tet_result(TET_FAIL); \
- return; \
- } \
-}
-
-Evas_Object *main_win = NULL;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_calendar_text_saturday_color_set_func_01(void);
-static void utc_UIFW_elm_calendar_text_saturday_color_set_func_02(void);
-
-enum {
- POSITIVE_TC_IDX = 0x01,
- NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
- { utc_UIFW_elm_calendar_text_saturday_color_set_func_01, POSITIVE_TC_IDX },
- { utc_UIFW_elm_calendar_text_saturday_color_set_func_02, NEGATIVE_TC_IDX },
- { NULL, 0 }
-};
-
-static void startup(void)
-{
- tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
-
- elm_init(0, NULL);
- main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
- evas_object_show(main_win);
-}
-
-static void cleanup(void)
-{
- if (NULL != main_win)
- {
- evas_object_del(main_win);
- main_win = NULL;
- }
-
- elm_shutdown();
- tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_calendar_text_saturday_color_set()
- */
-static void utc_UIFW_elm_calendar_text_saturday_color_set_func_01(void)
-{
- Evas_Object *test_eo = NULL;
- test_eo = elm_calendar_add(main_win);
- elm_calendar_text_saturday_color_set(test_eo, 2);
-
- TET_CHECK_PASS(NULL, test_eo);
-
- tet_result(TET_PASS);
- tet_infoline("elm_calendar_text_saturday_color_set() passed in positive test case");
- evas_object_del(test_eo);
- test_eo = NULL;
-}
-
-/**
- * @brief Negative test case of ug_init elm_calendar_text_saturday_color_set()
- */
-static void utc_UIFW_elm_calendar_text_saturday_color_set_func_02(void)
-{
- Evas_Object *test_eo = NULL;
- test_eo = elm_calendar_add(main_win);
- elm_calendar_text_saturday_color_set(NULL, 2);
- tet_infoline("elm_calendar_text_saturday_color_set() passed in negative test case");
- evas_object_del(test_eo);
- test_eo = NULL;
- tet_result(TET_PASS);
-}
+++ /dev/null
-#include <tet_api.h>
-#include <Elementary.h>
-
-// Definitions
-// For checking the result of the positive test case.
-#define TET_CHECK_PASS(x1, y...) \
-{ \
- Evas_Object *err = y; \
- if (err == (x1)) \
- { \
- tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
- tet_result(TET_FAIL); \
- return; \
- } \
-}
-
-// For checking the result of the negative test case.
-#define TET_CHECK_FAIL(x1, y...) \
-{ \
- Evas_Object *err = y; \
- if (err != (x1)) \
- { \
- tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
- tet_result(TET_FAIL); \
- return; \
- } \
-}
-
-Evas_Object *main_win = NULL;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_calendar_text_sunday_color_set_func_01(void);
-static void utc_UIFW_elm_calendar_text_sunday_color_set_func_02(void);
-
-enum {
- POSITIVE_TC_IDX = 0x01,
- NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
- { utc_UIFW_elm_calendar_text_sunday_color_set_func_01, POSITIVE_TC_IDX },
- { utc_UIFW_elm_calendar_text_sunday_color_set_func_02, NEGATIVE_TC_IDX },
- { NULL, 0 }
-};
-
-static void startup(void)
-{
- tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
-
- elm_init(0, NULL);
- main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
- evas_object_show(main_win);
-}
-
-static void cleanup(void)
-{
- if (NULL != main_win)
- {
- evas_object_del(main_win);
- main_win = NULL;
- }
-
- elm_shutdown();
- tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_calendar_text_sunday_color_set()
- */
-static void utc_UIFW_elm_calendar_text_sunday_color_set_func_01(void)
-{
- Evas_Object *test_eo = NULL;
- test_eo = elm_calendar_add(main_win);
- elm_calendar_text_sunday_color_set(test_eo, 3);
-
- TET_CHECK_PASS(NULL, test_eo);
-
- tet_result(TET_PASS);
- tet_infoline("elm_calendar_text_sunday_color_set() passed in positive test case");
- evas_object_del(test_eo);
- test_eo = NULL;
-}
-
-/**
- * @brief Negative test case of ug_init elm_calendar_text_sunday_color_set()
- */
-static void utc_UIFW_elm_calendar_text_sunday_color_set_func_02(void)
-{
- Evas_Object *test_eo = NULL;
- test_eo = elm_calendar_add(main_win);
- elm_calendar_text_sunday_color_set(NULL, 3);
- tet_infoline("elm_calendar_text_sunday_color_set() passed in negative test case");
- evas_object_del(test_eo);
- test_eo = NULL;
- tet_result(TET_PASS);
-}
+++ /dev/null
-#include <tet_api.h>
-#include <Elementary.h>
-
-// Definitions
-// For checking the result of the positive test case.
-#define TET_CHECK_PASS(x1, y...) \
-{ \
- Evas_Object *err = y; \
- if (err == (x1)) \
- { \
- tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
- tet_result(TET_FAIL); \
- return; \
- } \
-}
-
-// For checking the result of the negative test case.
-#define TET_CHECK_FAIL(x1, y...) \
-{ \
- Evas_Object *err = y; \
- if (err != (x1)) \
- { \
- tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
- tet_result(TET_FAIL); \
- return; \
- } \
-}
-
-Evas_Object *main_win = NULL;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_calendar_text_weekday_color_set_func_01(void);
-static void utc_UIFW_elm_calendar_text_weekday_color_set_func_02(void);
-
-enum {
- POSITIVE_TC_IDX = 0x01,
- NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
- { utc_UIFW_elm_calendar_text_weekday_color_set_func_01, POSITIVE_TC_IDX },
- { utc_UIFW_elm_calendar_text_weekday_color_set_func_02, NEGATIVE_TC_IDX },
- { NULL, 0 }
-};
-
-static void startup(void)
-{
- tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
-
- elm_init(0, NULL);
- main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
- evas_object_show(main_win);
-}
-
-static void cleanup(void)
-{
- if (NULL != main_win)
- {
- evas_object_del(main_win);
- main_win = NULL;
- }
-
- elm_shutdown();
- tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_calendar_text_weekday_color_set()
- */
-static void utc_UIFW_elm_calendar_text_weekday_color_set_func_01(void)
-{
- Evas_Object *test_eo = NULL;
- test_eo = elm_calendar_add(main_win);
- elm_calendar_text_weekday_color_set(test_eo, 1);
-
- TET_CHECK_PASS(NULL, test_eo);
-
- tet_result(TET_PASS);
- tet_infoline("elm_calendar_text_weekday_color_set() passed in positive test case");
- evas_object_del(test_eo);
- test_eo = NULL;
-}
-
-/**
- * @brief Negative test case of ug_init elm_calendar_text_weekday_color_set()
- */
-static void utc_UIFW_elm_calendar_text_weekday_color_set_func_02(void)
-{
- Evas_Object *test_eo = NULL;
- test_eo = elm_calendar_add(main_win);
- elm_calendar_text_weekday_color_set(NULL, 1);
- tet_infoline("elm_calendar_text_weekday_color_set() passed in negative test case");
- evas_object_del(test_eo);
- test_eo = NULL;
- tet_result(TET_PASS);
-}
utc_UIFW_elm_check_icon_get_func \
utc_UIFW_elm_check_state_set_func \
utc_UIFW_elm_check_state_get_func \
- utc_UIFW_elm_toggle_state_pointer_set_func
+ utc_UIFW_elm_check_state_pointer_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_colorpalette_color_set_func \
utc_UIFW_elm_colorpalette_row_column_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
+ rm -f tet_captured
+ rm -f tet_lock
+ rm -f *~
CC ?= gcc
TARGETS = utc_UIFW_elm_colorselector_add_func \
- utc_UIFW_elm_colorselector_color_set_func \
- utc_UIFW_elm_colorselector_color_get_func
+ utc_UIFW_elm_colorselector_color_get_func \
+ utc_UIFW_elm_colorselector_color_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
- rm -f tet_captured
+ rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_conformant_content_set_func \
utc_UIFW_elm_conformant_content_unset_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_datefield_input_panel_state_callback_add_func \
utc_UIFW_elm_datefield_input_panel_state_callback_del_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
datefield = elm_datefield_add(main_win);
elm_datefield_date_set(datefield, 2010, 10, 14, 1, 36);
elm_datefield_date_get(datefield, &year, &month, &day, &hour, &min);
-
+
if (!(year == 2010 && month == 10 && day == 14 && hour == 1 && min == 36)) {
tet_infoline("elm_datefield_date_set() failed in positive test case");
tet_result(TET_FAIL);
int year, month, day, hour, min;
datefield = elm_datefield_add(main_win);
- elm_datefield_date_set(datefield, 3000, 13, 50, 28, 70);
+ elm_datefield_date_set(NULL, 2010, 10, 14, 1, 36);
elm_datefield_date_get(datefield, &year, &month, &day, &hour, &min);
- if (!(year <= 2099 && month <= 12 && day <= 31 && hour <= 23 && min <= 59)) {
+ if ((year == 2010 && month == 10 && day == 14 && hour == 1 && min <= 36)) {
tet_infoline("elm_datefield_date_set() failed in negative test case");
tet_result(TET_FAIL);
return;
utc_UIFW_elm_dayselector_check_state_get_func \
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_imageslider_next_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f *~ *.o tet_captured tet_lock $(TARGETS)
utc_UIFW_elm_navigationbar_animation_disabled_set_func \
utc_UIFW_elm_navigationbar_title_object_list_unset_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
- rm -f *~
+ rm -f tet_lock
+ rm -f *~
\ No newline at end of file
utc_UIFW_elm_navigationbar_ex_item_content_get_func \
utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_nocontents_label_get_func \
utc_UIFW_elm_nocontents_label_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
TARGETS = utc_UIFW_elm_page_control_add_func \
utc_UIFW_elm_page_control_page_id_get_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
+ rm -f tet_captured
+ rm -f tet_lock
+ rm -f *~
utc_UIFW_elm_panes_fixed_set_func \
utc_UIFW_elm_panes_fixed_get_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_popup_orient_set_func \
utc_UIFW_elm_popup_run_func
-PKGS = elementary
+PKGS = elementary evas ecore
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
struct tet_testlist tet_testlist[] = {
{ utc_UIFW_elm_popup_add_func_01, POSITIVE_TC_IDX },
- { utc_UIFW_elm_popup_add_func_02, POSITIVE_TC_IDX },
+ { utc_UIFW_elm_popup_add_func_02, NEGATIVE_TC_IDX },
{ NULL, 0 }
};
tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
}
-static int
+static Eina_Bool
_exit_timer_popup(void *data)
{
printf("\n\nexiting timer\n");
elm_popup_response((Evas_Object *)data, ELM_POPUP_RESPONSE_NONE);
- return 0;
+ return EINA_FALSE;
}
utc_UIFW_elm_progressbar_horizontal_get_func \
utc_UIFW_elm_progressbar_inverted_get_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_radio_value_get_func \
utc_UIFW_elm_radio_value_pointer_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_searchbar_entry_get_func \
utc_UIFW_elm_searchbar_text_get_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f *~ *.o tet_captured tet_lock $(TARGETS)
utc_UIFW_elm_segment_control_item_selected_get_func \
utc_UIFW_elm_segment_control_item_selected_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_slider_value_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_slidingdrawer_max_drag_value_set_func \
utc_UIFW_elm_slidingdrawer_drag_value_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_tickernoti_mode_set_func \
utc_UIFW_elm_tickernoti_mode_get_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~
utc_UIFW_elm_toggle_state_pointer_set_func
-PKGS = elementary
+PKGS = elementary evas
LDFLAGS = `pkg-config --libs $(PKGS)`
LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
all: $(TARGETS)
-$(TARGET): %: %.c
- $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
rm -f $(TARGETS)
rm -f tet_captured
+ rm -f tet_lock
rm -f *~