Add the type cast code for arm64 build 27/96027/1 accepted/tizen/ivi/20161108.001300 accepted/tizen/mobile/20161108.001158 accepted/tizen/tv/20161108.001232 accepted/tizen/wearable/20161108.001245 submit/tizen/20161107.085724
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:52:07 +0000 (19:52 +0900)
Change-Id: Id0712f45512f3f0a0b585ebec4bd6990c8a0d284
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;
                        }