[common][sound][timeout is increased due to manual test] 82/134182/1
authoryuanzhongyuan <zy123.yuan@samsung.com>
Thu, 15 Jun 2017 06:32:50 +0000 (14:32 +0800)
committeryuanzhongyuan <zy123.yuan@samsung.com>
Thu, 15 Jun 2017 06:32:50 +0000 (14:32 +0800)
Change-Id: Iaf0b063af9c9aa1f86d0e52baec89f265d9c439f

common/tct-sound-tizen-tests/sound/SoundDeviceStateChangeCallback_onChanged.html
common/tct-sound-tizen-tests/sound/SoundManager_addDeviceStateChangeListener.html
common/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList.html
common/tct-sound-tizen-tests/sound/SoundManager_getConnectedDeviceList.html
common/tct-sound-tizen-tests/sound/SoundManager_removeDeviceStateChangeListener.html
common/tct-sound-tizen-tests/tests.xml

index bfc45ce5974f5e2f1ee99462a34a46e79c5a8004..5e4cca53906d53e78f4d38f25c58a211d7a7003c 100755 (executable)
@@ -31,15 +31,15 @@ Authors:
 //==== LABEL Test whether SoundDeviceStateChangeCallback::onChanged is called with argument of proper type
 //==== SPEC Tizen Web API:Multimedia:Sound:SoundDeviceStateChangeCallback:onChanged M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/sound.html
-//==== ONLOAD_DELAY 5
+//==== ONLOAD_DELAY 20
 //==== EXECUTION_TYPE manual
 //==== PRE Before Click run, make sure no earphone is plugged in
 //==== PRIORITY P1
 //==== TEST_CRITERIA CBOA CBT
 
-setup({timeout: 5000});
+setup({timeout: 20000});
 
-var t = async_test(document.title, {timeout: 5000}), changeCallback;
+var t = async_test(document.title, {timeout: 20000}), changeCallback;
 
 t.step(function () {
     changeCallback = t.step_func(function (info) {
index 393822b4b32d5a4cd3fb8c91f73a7e039a6c68d0..fb5bca01e5eaf2d239e85cee2bb0ae4f2cd2a883 100755 (executable)
@@ -31,15 +31,15 @@ Authors:
 //==== LABEL Check if SoundManager::addDeviceStateChangeListener() method can be called
 //==== SPEC Tizen Web API:Multimedia:Sound:SoundManager:addDeviceStateChangeListener M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/sound.html
-//==== ONLOAD_DELAY 5
+//==== ONLOAD_DELAY 20
 //==== EXECUTION_TYPE manual
 //==== PRE Before Click run, make sure no earphone is plugged in
 //==== PRIORITY P1
 //==== TEST_CRITERIA MR
 
-setup({timeout: 5000});
+setup({timeout: 20000});
 
-var t = async_test(document.title, {timeout: 5000}), successCallback, retValue;
+var t = async_test(document.title, {timeout: 20000}), successCallback, retValue;
 
 t.step(function () {
     successCallback = t.step_func(function (info) {
index 70338ebca6706ccfac029eddbb478531825416bf..9492e4ef0c8b0cee36ed2e74468ae7ef71b10696 100755 (executable)
@@ -31,29 +31,15 @@ Authors:
 //==== LABEL Check if soundManager::getActivatedDeviceList() method can be called
 //==== SPEC Tizen Web API:Multimedia:Sound:SoundManager:getActivatedDeviceList M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/sound.html
-//==== ONLOAD_DELAY 5
-//==== EXECUTION_TYPE manual
-//==== PRE Before Click run, make sure earphone is plugged in and music is played
 //==== PRIORITY: P1
 //==== TEST_CRITERIA MR MNA
 
-setup({timeout: 5000});
-
-var t = async_test(document.title, {timeout: 5000}), changeCallback, retValue = null;
-
-t.step(function () {
-    changeCallback = t.step_func(function (info) {
-        alert("Play music and turn off this alert");
-        retValue = tizen.sound.getActivatedDeviceList();
-        assert_type(retValue, "array", "method should return array type");
-        assert_type(retValue[0], "object", "value should be object");
-        t.done();
-    });
-
-    tizen.sound.addDeviceStateChangeListener(changeCallback);
-
-});
+test(function () {
+    retValue = tizen.sound.getActivatedDeviceList();
+    assert_type(retValue, "array", "method should return array type");
+    assert_type(retValue[0], "object", "value should be object");
+}, document.title);
 
 </script>
 </body>
-</html>
\ No newline at end of file
+</html>
index b0bb716fdb023515c9833f7741455efc04b29113..aa0980a0e2af10e8c36053f3111249e868d0e6e4 100755 (executable)
@@ -31,15 +31,15 @@ Authors:
 //==== LABEL Check if soundManager::getConnectedDeviceList() method can be called
 //==== SPEC Tizen Web API:Multimedia:Sound:SoundManager:getConnectedDeviceList M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/sound.html
-//==== ONLOAD_DELAY 5
+//==== ONLOAD_DELAY 20
 //==== EXECUTION_TYPE manual
 //==== PRE Before Click run, make sure earphone is plugged in
 //==== PRIORITY: P1
 //==== TEST_CRITERIA MR MNA
 
-setup({timeout: 5000});
+setup({timeout: 20000});
 
-var t = async_test(document.title, {timeout: 5000}), changeCallback, retValue = null;
+var t = async_test(document.title, {timeout: 20000}), changeCallback, retValue = null;
 
 t.step(function () {
         changeCallback = t.step_func(function (info) {
index 90069b4cf48237f8d49b2a390f87b45eaf4773af..2d844a35818a885bcb3d00ed498c00a724fbdeeb 100755 (executable)
@@ -31,15 +31,15 @@ Authors:
 //==== LABEL Check if SoundManager::removeDeviceStateChangeListener() method can be called
 //==== SPEC Tizen Web API:Multimedia:Sound:SoundManager:removeDeviceStateChangeListener M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/sound.html
-//==== ONLOAD_DELAY 5
+//==== ONLOAD_DELAY 20
 //==== EXECUTION_TYPE manual
 //==== PRE Before Click run, make sure no earphone is plugged in
 //==== PRIORITY P1
 //==== TEST_CRITERIA MR MAST
 
-setup({timeout: 5000});
+setup({timeout: 20000});
 
-var t = async_test(document.title, {timeout: 5000}), changeCallback, listenerId, retValue = null;
+var t = async_test(document.title, {timeout: 20000}), changeCallback, listenerId, retValue = null;
 
 t.step(function () {
     changeCallback = t.step_func(function (info) {
index 1aea1a3bcaa694ce9c72126135ea2015168efd7c..63dc2ec01315e3bf9178ff793bdb1a151647cb5c 100755 (executable)
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundDeviceStateChangeCallback_notexist.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundDeviceStateChangeCallback_onChanged" onload_delay="5" priority="P1" purpose="Test whether SoundDeviceStateChangeCallback::onChanged is called with argument of proper type">
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundDeviceStateChangeCallback_onChanged" onload_delay="20" priority="P1" purpose="Test whether SoundDeviceStateChangeCallback::onChanged is called with argument of proper type">
         <description>
           <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
           <steps>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundDeviceInfo_notexist.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_addDeviceStateChangeListener" onload_delay="5" priority="P1" purpose="Check if SoundManager::addDeviceStateChangeListener() method can be called">
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_addDeviceStateChangeListener" onload_delay="20" priority="P1" purpose="Check if SoundManager::addDeviceStateChangeListener() method can be called">
         <description>
           <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
           <steps>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_addDeviceStateChangeListener_misarg.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_getActivatedDeviceList" onload_delay="5" priority="P1" purpose="Check if SoundManager::getActivatedDeviceList() method can be called">
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="auto" id="SoundManager_getActivatedDeviceList" priority="P1" purpose="Check if SoundManager::getActivatedDeviceList() method can be called">
         <description>
-          <pre_condition>Before Click run, make sure earphone is plugged in target. After Click run, play the music</pre_condition>
-          <steps>
-            <step order="1">
-              <step_desc>Plug in earphone and play music</step_desc>
-              <expected>Pass</expected>
-            </step>
-          </steps>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList.html</test_script_entry>
         </description>
       </testcase>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList_extra_argument.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_getConnectedDeviceList" onload_delay="5" priority="P1" purpose="Check if SoundManager::getConnectedDeviceList() method can be called">
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_getConnectedDeviceList" onload_delay="20" priority="P1" purpose="Check if SoundManager::getConnectedDeviceList() method can be called">
         <description>
           <pre_condition>Before Click run, remove the earphone from target. After Click run, make sure earphone is plugged in</pre_condition>
           <steps>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getConnectedDeviceList_extra_argument.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_removeDeviceStateChangeListener" onload_delay="5" priority="P1" purpose="Check if SoundManager::removeDeviceStateChangeListener() method can be called">
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_removeDeviceStateChangeListener" onload_delay="20" priority="P1" purpose="Check if SoundManager::removeDeviceStateChangeListener() method can be called">
         <description>
           <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
           <steps>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundDeviceStateChangeCallback_notexist.html</test_script_entry>
         </description>
       </testcase>
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundDeviceStateChangeCallback_onChanged" onload_delay="20" priority="P1" purpose="Test whether SoundDeviceStateChangeCallback::onChanged is called with argument of proper type">
+        <description>
+          <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
+          <steps>
+            <step order="1">
+              <step_desc>Plug in earphone</step_desc>
+              <expected>Pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundDeviceStateChangeCallback_onChanged.html</test_script_entry>
+        </description>
+      </testcase>
       <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="auto" id="SoundDeviceInfo_direction_attribute" priority="P1" purpose="Check if attribute direction of SoundDeviceInfo exists, has type SoundIOType and is readonly">
         <description>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundDeviceInfo_direction_attribute.html</test_script_entry>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundDeviceInfo_notexist.html</test_script_entry>
         </description>
       </testcase>
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_addDeviceStateChangeListener" onload_delay="20" priority="P1" purpose="Check if SoundManager::addDeviceStateChangeListener() method can be called">
+        <description>
+          <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
+          <steps>
+            <step order="1">
+              <step_desc>Plug in earphone</step_desc>
+              <expected>Pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_addDeviceStateChangeListener.html</test_script_entry>
+        </description>
+      </testcase>
       <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="auto" id="SoundManager_addDeviceStateChangeListener_callback_TypeMismatch" priority="P2" purpose="Check if SoundManager::addDeviceStateChangeListener() throws exception when successCallback is TypeMismatch">
         <description>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_addDeviceStateChangeListener_callback_TypeMismatch.html</test_script_entry>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_addDeviceStateChangeListener_misarg.html</test_script_entry>
         </description>
       </testcase>
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="auto" id="SoundManager_getActivatedDeviceList" priority="P1" purpose="Check if SoundManager::getActivatedDeviceList() method can be called">
+        <description>
+          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList.html</test_script_entry>
+        </description>
+      </testcase>
       <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="auto" id="SoundManager_getActivatedDeviceList_exist" priority="P0" purpose="Check if SoundManager::getActivatedDeviceList() method exists">
         <description>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList_exist.html</test_script_entry>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList_extra_argument.html</test_script_entry>
         </description>
       </testcase>
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_getConnectedDeviceList" onload_delay="20" priority="P1" purpose="Check if SoundManager::getConnectedDeviceList() method can be called">
+        <description>
+          <pre_condition>Before Click run, remove the earphone from target. After Click run, make sure earphone is plugged in</pre_condition>
+          <steps>
+            <step order="1">
+              <step_desc>Plug in earphone</step_desc>
+              <expected>Pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getConnectedDeviceList.html</test_script_entry>
+        </description>
+      </testcase>
       <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="auto" id="SoundManager_getConnectedDeviceList_exist" priority="P0" purpose="Check if SoundManager::getConnectedDeviceList() method exists">
         <description>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getConnectedDeviceList_exist.html</test_script_entry>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getConnectedDeviceList_extra_argument.html</test_script_entry>
         </description>
       </testcase>
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_removeDeviceStateChangeListener" onload_delay="20" priority="P1" purpose="Check if SoundManager::removeDeviceStateChangeListener() method can be called">
+        <description>
+          <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
+          <steps>
+            <step order="1">
+              <step_desc>Plug in earphone</step_desc>
+              <expected>Pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_removeDeviceStateChangeListener.html</test_script_entry>
+        </description>
+      </testcase>
       <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="auto" id="SoundManager_removeDeviceStateChangeListener_exist" priority="P0" purpose="Check if SoundManager::removeDeviceStateChangeListener() method exists">
         <description>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_removeDeviceStateChangeListener_exist.html</test_script_entry>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_addDeviceStateChangeListener_misarg.html</test_script_entry>
         </description>
       </testcase>
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="auto" id="SoundManager_getActivatedDeviceList" priority="P1" purpose="Check if SoundManager::getActivatedDeviceList() method can be called">
+        <description>
+          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList.html</test_script_entry>
+        </description>
+      </testcase>
       <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="auto" id="SoundManager_getActivatedDeviceList_exist" priority="P0" purpose="Check if SoundManager::getActivatedDeviceList() method exists">
         <description>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList_exist.html</test_script_entry>
         </description>
       </testcase>
     </set>
-    <set name="Sound_Wearable_manual_32bit_target" type="js">
-      <capabilities>
-        <capability name="http://tizen.org/feature/profile"><value>WEARABLE</value></capability>
-        <capability name="http://tizen.org/feature/network.bluetooth"/>
-        <capability name="http://tizen.org/feature/platform.core.cpu.arch.armv7"/>
-      </capabilities>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundDeviceStateChangeCallback_onChanged" onload_delay="5" priority="P1" purpose="Test whether SoundDeviceStateChangeCallback::onChanged is called with argument of proper type">
-        <description>
-          <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
-          <steps>
-            <step order="1">
-              <step_desc>Plug in earphone</step_desc>
-              <expected>Pass</expected>
-            </step>
-          </steps>
-          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundDeviceStateChangeCallback_onChanged.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_addDeviceStateChangeListener" onload_delay="5" priority="P1" purpose="Check if SoundManager::addDeviceStateChangeListener() method can be called">
-        <description>
-          <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
-          <steps>
-            <step order="1">
-              <step_desc>Plug in earphone</step_desc>
-              <expected>Pass</expected>
-            </step>
-          </steps>
-          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_addDeviceStateChangeListener.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_getActivatedDeviceList" onload_delay="5" priority="P1" purpose="Check if SoundManager::getActivatedDeviceList() method can be called">
-        <description>
-          <pre_condition>Before Click run, bluetooth headset should be not connected with target. After Click run, make sure bluetooth headset connection with target</pre_condition>
-          <steps>
-            <step order="1">
-              <step_desc>Before turn off the alert, play music</step_desc>
-              <expected>Pass</expected>
-            </step>
-          </steps>
-          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_getConnectedDeviceList" onload_delay="5" priority="P1" purpose="Check if SoundManager::getConnectedDeviceList() method can be called">
-        <description>
-          <pre_condition>Before Click run, remove the earphone from target. After Click run, make sure earphone is plugged in</pre_condition>
-          <steps>
-            <step order="1">
-              <step_desc>Plug in earphone</step_desc>
-              <expected>Pass</expected>
-            </step>
-          </steps>
-          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getConnectedDeviceList.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_removeDeviceStateChangeListener" onload_delay="5" priority="P1" purpose="Check if SoundManager::removeDeviceStateChangeListener() method can be called">
-        <description>
-          <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
-          <steps>
-            <step order="1">
-              <step_desc>Plug in earphone</step_desc>
-              <expected>Pass</expected>
-            </step>
-          </steps>
-          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_removeDeviceStateChangeListener.html</test_script_entry>
-        </description>
-      </testcase>
-    </set>
-    <set name="Sound_Wearable_manual_64bit_target" type="js">
+    <set name="Sound_Wearable_manual" type="js">
       <capabilities>
         <capability name="http://tizen.org/feature/profile"><value>WEARABLE</value></capability>
         <capability name="http://tizen.org/feature/network.bluetooth"/>
-        <capability name="http://tizen.org/feature/platform.core.cpu.arch.aarch64"/>
       </capabilities>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundDeviceStateChangeCallback_onChanged" onload_delay="5" priority="P1" purpose="Test whether SoundDeviceStateChangeCallback::onChanged is called with argument of proper type">
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundDeviceStateChangeCallback_onChanged" onload_delay="20" priority="P1" purpose="Test whether SoundDeviceStateChangeCallback::onChanged is called with argument of proper type">
         <description>
           <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
           <steps>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundDeviceStateChangeCallback_onChanged.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_addDeviceStateChangeListener" onload_delay="5" priority="P1" purpose="Check if SoundManager::addDeviceStateChangeListener() method can be called">
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_addDeviceStateChangeListener" onload_delay="20" priority="P1" purpose="Check if SoundManager::addDeviceStateChangeListener() method can be called">
         <description>
           <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
           <steps>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_addDeviceStateChangeListener.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_getActivatedDeviceList" onload_delay="5" priority="P1" purpose="Check if SoundManager::getActivatedDeviceList() method can be called">
-        <description>
-          <pre_condition>Before Click run, bluetooth headset should be not connected with target. After Click run, make sure bluetooth headset connection with target</pre_condition>
-          <steps>
-            <step order="1">
-              <step_desc>Before turn off the alert, play music</step_desc>
-              <expected>Pass</expected>
-            </step>
-          </steps>
-          <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getActivatedDeviceList.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_getConnectedDeviceList" onload_delay="5" priority="P1" purpose="Check if SoundManager::getConnectedDeviceList() method can be called">
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_getConnectedDeviceList" onload_delay="20" priority="P1" purpose="Check if SoundManager::getConnectedDeviceList() method can be called">
         <description>
           <pre_condition>Before Click run, remove the earphone from target. After Click run, make sure earphone is plugged in</pre_condition>
           <steps>
           <test_script_entry>/opt/tct-sound-tizen-tests/sound/SoundManager_getConnectedDeviceList.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_removeDeviceStateChangeListener" onload_delay="5" priority="P1" purpose="Check if SoundManager::removeDeviceStateChangeListener() method can be called">
+      <testcase component="Tizen Device APIs/Multimedia/Sound" execution_type="manual" id="SoundManager_removeDeviceStateChangeListener" onload_delay="20" priority="P1" purpose="Check if SoundManager::removeDeviceStateChangeListener() method can be called">
         <description>
           <pre_condition>Before Click run, make sure no earphone is plugged in</pre_condition>
           <steps>