Add the type cast code for arm64 build 29/96029/1 accepted/tizen/3.0/common/20161114.082756 accepted/tizen/3.0/ivi/20161108.062302 accepted/tizen/3.0/mobile/20161108.062149 accepted/tizen/3.0/tv/20161108.062233 accepted/tizen/3.0/wearable/20161108.062249 submit/tizen_3.0/20161107.085533 submit/tizen_3.0_common/20161110.084657
authorDoHyun Pyun <dh79.pyun@samsung.com>
Mon, 7 Nov 2016 10:52:07 +0000 (19:52 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Mon, 7 Nov 2016 10:54:11 +0000 (19:54 +0900)
Change-Id: If85a58cb3b80f8fbd673fafa3435bf4e60a1ca96
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
test/bt_unit_test.c

index dfda703ee72306a6978b84016563fe5d9c39d347..06d45876c649bd6d8752a3bbaa72a4b1e014bcc4 100644 (file)
@@ -3278,7 +3278,11 @@ int test_set_params(int test_id, char *param)
 
                        if (param_index == g_test_param.param_count) {
                                need_to_set_params = false;
+#ifdef ARCH64
+                               test_input_callback((void *)(uintptr_t)test_id);
+#else
                                test_input_callback((void *)test_id);
+#endif
                                param_index = 0;
                                return 0;
                        }
@@ -3304,7 +3308,11 @@ int test_set_params(int test_id, char *param)
 
                        if (param_index == g_test_param.param_count) {
                                need_to_set_params = false;
+#ifdef ARCH64
+                               test_input_callback((void *)(uintptr_t)test_id);
+#else
                                test_input_callback((void *)test_id);
+#endif
                                param_index = 0;
                                return 0;
                        }
@@ -4323,7 +4331,11 @@ int test_set_params(int test_id, char *param)
 
                        if (param_index == g_test_param.param_count) {
                                need_to_set_params = false;
+#ifdef ARCH64
+                               test_input_callback((void *)(uintptr_t)test_id);
+#else
                                test_input_callback((void *)test_id);
+#endif
                                param_index = 0;
                                return 0;
                        }