summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TC/testcase/utc_system_haptic_play.c8
-rw-r--r--packaging/capi-system-haptic.spec6
2 files changed, 9 insertions, 5 deletions
diff --git a/TC/testcase/utc_system_haptic_play.c b/TC/testcase/utc_system_haptic_play.c
index 247acd1..d06a235 100644
--- a/TC/testcase/utc_system_haptic_play.c
+++ b/TC/testcase/utc_system_haptic_play.c
@@ -89,7 +89,7 @@ static void utc_system_haptic_vibrate_monotone_p(void)
{
int error = HAPTIC_ERROR_NONE;
- error = haptic_vibrate_monotone(0, 1000);
+ error = haptic_vibrate_monotone(0, 1000, 50);
if(error != HAPTIC_ERROR_NONE)
dts_fail(API_NAME_PLAY_MONOTONE);
@@ -103,7 +103,7 @@ static void utc_system_haptic_vibrate_monotone_n_1(void)
{
int error = HAPTIC_ERROR_NONE;
- error = haptic_vibrate_monotone(-1, 1000);
+ error = haptic_vibrate_monotone(-1, 1000, 50);
if(error == HAPTIC_ERROR_NONE)
dts_fail(API_NAME_PLAY_MONOTONE);
@@ -117,7 +117,7 @@ static void utc_system_haptic_vibrate_monotone_n_2(void)
{
int error = HAPTIC_ERROR_NONE;
- error = haptic_vibrate_monotone(0, -1);
+ error = haptic_vibrate_monotone(0, -1, 50);
if(error == HAPTIC_ERROR_NONE)
dts_fail(API_NAME_PLAY_MONOTONE);
@@ -132,7 +132,7 @@ static void utc_system_haptic_stop_device_p(void)
{
int error = HAPTIC_ERROR_NONE;
- error = haptic_vibrate_monotone(0, 1000);
+ error = haptic_vibrate_monotone(0, 1000, 50);
if(error != HAPTIC_ERROR_NONE)
dts_fail(API_NAME_STOP_PLAY);
diff --git a/packaging/capi-system-haptic.spec b/packaging/capi-system-haptic.spec
index 99f660b..5c62aeb 100644
--- a/packaging/capi-system-haptic.spec
+++ b/packaging/capi-system-haptic.spec
@@ -2,7 +2,7 @@
Name: capi-system-haptic
Summary: A Haptic library in Tizen C API
Version: 0.1.0
-Release: 17
+Release: 19
Group: TO_BE/FILLED_IN
License: TO BE FILLED IN
Source0: %{name}-%{version}.tar.gz
@@ -58,6 +58,10 @@ rm -rf %{buildroot}
%{_libdir}/libcapi-system-haptic.so
%changelog
+* Thu Sep 06 2012 - Jiyoung Yun <jy910.yun@samsung.com>
+- fix TC error
+- Tag : capi-system-haptic_0.1.0-19
+
* Thu Aug 16 2012 - Jiyoung Yun <jy910.yun@samsung.com>
- modify the function parameter to control detail feedback level
- Tag : capi-system-haptic_0.1.0-17