diff options
author | jy910.yun <jy910.yun@samsung.com> | 2012-09-07 00:14:35 +0900 |
---|---|---|
committer | jy910.yun <jy910.yun@samsung.com> | 2012-10-24 12:30:03 +0900 |
commit | 5acf64489d6a8c1c44f395c7200c624144218358 (patch) | |
tree | 97037a965f6897e08d710b22b6b78a796d1c688a | |
parent | 084b8672dd390c1338a7949ebe91ad76f081a29e (diff) | |
download | haptic-5acf64489d6a8c1c44f395c7200c624144218358.tar.gz haptic-5acf64489d6a8c1c44f395c7200c624144218358.tar.bz2 haptic-5acf64489d6a8c1c44f395c7200c624144218358.zip |
fix TC error.
Change-Id: Iccd654aa67bd92f1a6b6dad34c54eaf2daaedbde
-rw-r--r-- | TC/testcase/utc_system_haptic_play.c | 8 | ||||
-rw-r--r-- | packaging/capi-system-haptic.spec | 6 |
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 |