fix TC error.
authorjy910.yun <jy910.yun@samsung.com>
Thu, 6 Sep 2012 15:14:35 +0000 (00:14 +0900)
committerjy910.yun <jy910.yun@samsung.com>
Wed, 24 Oct 2012 03:30:03 +0000 (12:30 +0900)
Change-Id: Iccd654aa67bd92f1a6b6dad34c54eaf2daaedbde

TC/testcase/utc_system_haptic_play.c
packaging/capi-system-haptic.spec

index 247acd1..d06a235 100644 (file)
@@ -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);
 
index 99f660b..5c62aeb 100644 (file)
@@ -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