-<?xml version="1.0" encoding="UTF-8"?>
-<buildinfos xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-xsi:noNamespaceSchemaLocation="buildinfo.xsd">
- <buildinfo name="model" support="true" type="String">
- <value>SM-Z130H</value>
- </buildinfo>
- <buildinfo name="manufacturer" support="true" type="String">
- <value>samsung</value>
- </buildinfo>
- <buildinfo name="buildVersion" support="true" type="String">
- <value>Z130HDDE0ANL7</value>
- </buildinfo>
+<?xml version="1.0" encoding="UTF-8"?>\r
+<buildinfos xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
+xsi:noNamespaceSchemaLocation="buildinfo.xsd">\r
+ <buildinfo name="model" support="true" type="String">\r
+ <value>SM-Z130H</value>\r
+ </buildinfo>\r
+ <buildinfo name="manufacturer" support="true" type="String">\r
+ <value>samsung</value>\r
+ </buildinfo>\r
+ <buildinfo name="buildVersion" support="true" type="String">\r
+ <value>Z130HDDE0ANL7</value>\r
+ </buildinfo>\r
</buildinfos>
\ No newline at end of file
-Reference : http://168.219.209.56/confluence/display/Tizen3/Running+Web+TCT+for+Tizen+3.0
-
----------------------------------------------------------------------------------------
-
-1. Please push the below attached 2 files in the below location(target) before the test start.
-
-file name :
-
-capability.xml
-buildinfo.xml
-
-
-location :
-
-/home/owner/content/Documents/tct/
-
-
-ex) sdb push capability.xml /home/owner/content/Documents/tct/
-ex) sdb push buildinfo.xml /home/owner/content/Documents/tct/
-
-
----------------------------------------------------------------------------------------
+Reference : http://168.219.209.56/confluence/display/Tizen3/Running+Web+TCT+for+Tizen+3.0\r
+\r
+---------------------------------------------------------------------------------------\r
+\r
+1. Please push the below attached 2 files in the below location(target) before the test start.\r
+\r
+file name : \r
+\r
+capability.xml\r
+buildinfo.xml\r
+\r
+\r
+location :\r
+\r
+/home/owner/content/Documents/tct/\r
+\r
+\r
+ex) sdb push capability.xml /home/owner/content/Documents/tct/\r
+ex) sdb push buildinfo.xml /home/owner/content/Documents/tct/\r
+\r
+\r
+---------------------------------------------------------------------------------------\r
import re
from lxml import etree as et
+
################################################################################
# @function file_copy
# @author SRID(ankit.sri1)
# @return NA
################################################################################
def file_copy(path, items, dest_dir, dest_location, first_directory):
- for item in items:
- location = os.path.join(path, item)
- if os.path.isdir(location) and item != first_directory and item != dest_dir:
- files = os.listdir(location)
- module_files = []
- modules = []
- for file in files:
- match = re.search("\.(?:auto|manual).xml$", file)
- if match:
- module_files.append(file)
- for module_file in module_files:
- words = re.split('[-.]', module_file)
- #if splitting is not possible
- if len(words) == 3:
- print("Can't find module file with a hyphen or a dot")
- print("Merge Script Finished")
- sys.exit()
- else:
- module = words[1]
-
- #extract all word with this module -- comment
- copying_files = []
- #if module is already present in modules file - continue
- if modules.count(module) == 0:
- modules.append(module)
- for file in files:
- match = re.search(module, file)
- if match:
- copying_files.append(file)
- for file in copying_files:
- shutil.copy(os.path.join(location,file),dest_location)
+ for item in items:
+ location = os.path.join(path, item)
+ if os.path.isdir(location) and item != first_directory and item != dest_dir:
+ files = os.listdir(location)
+ module_files = []
+ modules = []
+ for file in files:
+ match = re.search("\.(?:auto|manual).xml$", file)
+ if match:
+ module_files.append(file)
+ for module_file in module_files:
+ words = re.split('[-.]', module_file)
+ # if splitting is not possible
+ if len(words) == 3:
+ print("Can't find module file with a hyphen or a dot")
+ print("Merge Script Finished")
+ sys.exit()
+ else:
+ module = words[1]
+
+ # extract all word with this module -- comment
+ copying_files = []
+ # if module is already present in modules file - continue
+ if modules.count(module) == 0:
+ modules.append(module)
+ for file in files:
+ match = re.search(module, file)
+ if match:
+ copying_files.append(file)
+ for file in copying_files:
+ shutil.copy(os.path.join(location, file), dest_location)
+
################################################################################
# @function xml_file_append
# @return NA
################################################################################
def xml_file_append(path, items, dest_dir, dest_location, first_directory):
- for filename in os.listdir(dest_location):
- if filename == "summary.xml":
- dest_fullname = os.path.join(dest_location, filename)
- dest_tree = et.parse(dest_fullname)
- break
- dest_root = dest_tree.getroot()
- #for all the other directory we will find summary.xml file and copy it into dest directory
- for item in items:
- location = os.path.join(path, item)
- if os.path.isdir(location) and item != first_directory and item != dest_dir:
- source_dir = location
- for filename in os.listdir(source_dir):
- if filename == "summary.xml":
- source_fullname = os.path.join(source_dir, filename)
- source_tree = et.parse(source_fullname)
- source_tags = source_tree.findall('//suite')
- for tag in source_tags:
- # append the tag
- dest_root.append(tag)
- # overwrite the xml file
- et.ElementTree(dest_root).write(dest_fullname , pretty_print=True, encoding='utf-8', xml_declaration=True)
+ for filename in os.listdir(dest_location):
+ if filename == "summary.xml":
+ dest_fullname = os.path.join(dest_location, filename)
+ dest_tree = et.parse(dest_fullname)
+ break
+ dest_root = dest_tree.getroot()
+ # for all the other directory we will find summary.xml file and copy it into dest directory
+ for item in items:
+ location = os.path.join(path, item)
+ if os.path.isdir(location) and item != first_directory and item != dest_dir:
+ source_dir = location
+ for filename in os.listdir(source_dir):
+ if filename == "summary.xml":
+ source_fullname = os.path.join(source_dir, filename)
+ source_tree = et.parse(source_fullname)
+ source_tags = source_tree.findall('//suite')
+ for tag in source_tags:
+ # append the tag
+ dest_root.append(tag)
+ # overwrite the xml file
+ et.ElementTree(dest_root).write(dest_fullname, pretty_print=True,
+ encoding='utf-8', xml_declaration=True)
+
#################### Start Script #####################
-
+
print("Merging Script Running...")
-#Current directory path
+# Current directory path
path = os.getcwd()
-#User given final result directory path
+# User given final result directory path
if len(sys.argv) > 1:
- cwd=sys.argv[1]
- resultpath = os.path.dirname(cwd)
+ cwd = sys.argv[1]
+ resultpath = os.path.dirname(cwd)
else:
- #Default result directory path
- resultpath = os.getcwd()
+ # Default result directory path
+ resultpath = os.getcwd()
dest = "Merged_Report"
dest_dir = dest
new_location = os.path.join(resultpath, dest)
-#for deleting previous content if any
+# for deleting previous content if any
if os.path.isdir(new_location):
- shutil.rmtree(new_location, ignore_errors=True)
+ shutil.rmtree(new_location, ignore_errors=True)
-#Listing only directories in current path
+# Listing only directories in current path
items = list(filter(os.path.isdir, os.listdir(path)))
-#if no directory is present
+# if no directory is present
if len(items) == 0:
- print("No Directory Found")
- print("Merge Script Finished")
-#if only one directory is present
+ print("No Directory Found")
+ print("Merge Script Finished")
+# if only one directory is present
elif len(items) == 1:
- print("Can't merge, only one directory is present!")
- print("Merge Script Finished")
+ print("Can't merge, only one directory is present!")
+ print("Merge Script Finished")
else:
- location = ''
- #if any directory present with first manual module in it
- for item in items:
- manual_module_location = os.path.join(path,item)
- files = os.listdir(manual_module_location)
- for file in files:
- match = re.search("\.manual.xml$", file)
- if match:
- location = manual_module_location
- first_directory = item
- break
- if location == '':
- #copying any one directory content to a new directory
- for item in items:
- location = os.path.join(path, item)
- if os.path.isdir(location):
- first_directory = item
- break
- dest = shutil.copytree(location, new_location)
- file_copy(path, items, dest_dir, new_location, first_directory)
- xml_file_append(path, items, dest_dir, new_location, first_directory)
- print("Merging Finished!!")
- print("Merged report is created at:"+new_location)
\ No newline at end of file
+ location = ''
+ # if any directory present with first manual module in it
+ for item in items:
+ manual_module_location = os.path.join(path, item)
+ files = os.listdir(manual_module_location)
+ for file in files:
+ match = re.search("\.manual.xml$", file)
+ if match:
+ location = manual_module_location
+ first_directory = item
+ break
+ if location == '':
+ # copying any one directory content to a new directory
+ for item in items:
+ location = os.path.join(path, item)
+ if os.path.isdir(location):
+ first_directory = item
+ break
+ dest = shutil.copytree(location, new_location)
+ file_copy(path, items, dest_dir, new_location, first_directory)
+ xml_file_append(path, items, dest_dir, new_location, first_directory)
+ print("Merging Finished!!")
+ print("Merged report is created at:" + new_location)
--- /dev/null
+<?xml version="1.0"?>\r
+<MappingInfo>\r
+ <bb_info name="building-blocks-root-Preset_iot_core">\r
+ <tct_info>Tizen.Applications.Service.Tests</tct_info>\r
+ <tct_info>Tizen.Applications.Service.Manual.Tests</tct_info>\r
+ <tct_info>Tizen.Log.Tests</tct_info>\r
+ <tct_info>Tizen.IoTConnectivityClient.Tests</tct_info>\r
+ <tct_info>Tizen.Securerepository.Tests</tct_info>\r
+ <tct_info>Tizen.Information.Tests</tct_info>\r
+ <tct_info>Tizen.Information.Manual.Tests</tct_info>\r
+ <tct_info>Tizen.Tracer.Tests</tct_info>\r
+ <tct_info>Tizen.WiFi.Tests</tct_info>\r
+ <tct_info>Tizen.Connection.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Component_Manager_API">\r
+ <tct_info>Tizen.Applications.ComponentBased.ComponentManager.Tests</tct_info>\r
+ <tct_info>Tizen.Applications.ComponentBased.ComponentPort.Tests</tct_info>\r
+ <tct_info>Tizen.ComponentBased.Tests</tct_info>\r
+ <tct_info>Tizen.ComponentBased.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-Account_Manager">\r
+ <tct_info>Tizen.Account.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-Sync_Manager">\r
+ <tct_info>Tizen.SyncManager.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Social-Calendar">\r
+ <tct_info>Tizen.Calendar.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Social-Contacts">\r
+ <tct_info>Tizen.Contacts.Tests</tct_info>\r
+ <tct_info>Tizen.Contacts.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Messaging-Email">\r
+ <tct_info>Tizen.Email.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Social-Phonenumber_utils">\r
+ <tct_info>Tizen.PhonenumberUtils.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-FIDO_Client">\r
+ <tct_info>Tizen.FidoClient.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-OAuth2">\r
+ <tct_info>Tizen.OAuth2.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Web-WebView">\r
+ <tct_info>Tizen.WebView.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Alarm_API">\r
+ <tct_info>Tizen.Alarm.Tests</tct_info>\r
+ <tct_info>Tizen.Alarm.UI.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Attach_Panel">\r
+ <tct_info>Tizen.AttachPanel.Tests</tct_info>\r
+ <tct_info>Tizen.AttachPanel.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-SoftAP">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Badge_API">\r
+ <tct_info>Tizen.Badge.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Data_Control_API">\r
+ <tct_info>Tizen.DataControl.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Media_Key_API">\r
+ <tct_info>Tizen.MediaKey.Tests</tct_info>\r
+ <tct_info>Tizen.MediaKey.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Native_EFL_UI_app_model">\r
+ <tct_info>Tizen.Applications.Tests</tct_info>\r
+ <tct_info>Tizen.Applications.Manual.Tests</tct_info>\r
+ <tct_info>Tizen.WidgetApplications.Tests</tct_info>\r
+ <tct_info>Tizen.WidgetApplications.Manual.Tests</tct_info>\r
+ <tct_info>Tizen.WidgetControl.Tests</tct_info>\r
+ <tct_info>Tizen.WidgetControl.Manual.Tests</tct_info>\r
+ <tct_info>Tizen.RemoteView.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Notification_API">\r
+ <tct_info>Tizen.Notifications.Tests</tct_info>\r
+ <tct_info>Tizen.Notifications.Manual.Tests</tct_info>\r
+ <tct_info>Tizen.NotificationEventListener.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Shortcut_API">\r
+ <tct_info>Tizen.Shortcut.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Event_API">\r
+ <tct_info>Tizen.Applications.EventManager.Tests</tct_info>\r
+ <tct_info>Tizen.Applications.EventManager.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Message_Port_API">\r
+ <tct_info>Tizen.Applications.MessagePort.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-RPC_Port_API">\r
+ <tct_info>Tizen.Applications.RPCPort.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Job_Scheduler_API">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-TPK_Installation">\r
+ <tct_info>Tizen.Packagemanager.Tests</tct_info>\r
+ <tct_info>Tizen.Packagemanager.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-External_Storage_Installation">\r
+ <tct_info>Tizen.Packagemanager.Tests</tct_info>\r
+ <tct_info>Tizen.Packagemanager.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Base-Utils">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Content-Download">\r
+ <tct_info>Tizen.Download.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Content-MIME_Type">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Content-Media_Content">\r
+ <tct_info>Tizen.Mediacontent.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Image_Util">\r
+ <tct_info>Tizen.MultimediaUtil.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Tool">\r
+ <tct_info>Tizen.Multimedia.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Thumbnail_Util">\r
+ <tct_info>Tizen.MultimediaUtil.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Barcode">\r
+ <tct_info>Tizen.MediaVision.Tests</tct_info>\r
+ <tct_info>Tizen.MediaVision.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Face">\r
+ <tct_info>Tizen.MediaVision.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Image">\r
+ <tct_info>Tizen.MediaVision.Tests</tct_info>\r
+ <tct_info>Tizen.MediaVision.ImageClassifier.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Surveillance">\r
+ <tct_info>Tizen.MediaVision.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Inference">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Roi_Tracker">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_3d">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Context-Activity_Geusture_Recognition">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Context-Contextual_History">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Context-Contextual_Trigger">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Location-Geofence_Manager">\r
+ <tct_info>Tizen.Geofence.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Location-Location_Manager">\r
+ <tct_info>Tizen.Location.Tests</tct_info>\r
+ <tct_info>Tizen.Location.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Maps-Maps_Service">\r
+ <tct_info>Tizen.Maps.Tests</tct_info>\r
+ <tct_info>Tizen.Maps.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Messaging-Push">\r
+ <tct_info>Tizen.Push.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Audio_IO">\r
+ <tct_info>Tizen.AudioIO.Tests</tct_info>\r
+ <tct_info>Tizen.Multimedia.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Multi_assistant">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-MachineLearning-NNStreamer">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-MachineLearning-NNTrainer">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Camera">\r
+ <tct_info>Tizen.Camera.Tests</tct_info>\r
+ <tct_info>Tizen.Camera.UI.Tests</tct_info>\r
+ <tct_info>Tizen.Multimedia.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Codec">\r
+ <tct_info>Tizen.MediaCodec.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Controller">\r
+ <tct_info>Tizen.MediaController.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Player">\r
+ <tct_info>Tizen.MediaPlayer.Tests</tct_info>\r
+ <tct_info>Tizen.MediaPlayer.UI.Tests</tct_info>\r
+ <tct_info>Tizen.Multimedia.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Recorder">\r
+ <tct_info>Tizen.Recorder.Tests</tct_info>\r
+ <tct_info>Tizen.Multimedia.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Demuxer">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Muxer">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Streamer">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Stream_Recorder">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Screen_Mirroring">\r
+ <tct_info>Tizen.ScreenMirroring.Tests</tct_info>\r
+ <tct_info>Tizen.Multimedia.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Metadata_Editor">\r
+ <tct_info>Tizen.Metadata.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Metadata_Extractor">\r
+ <tct_info>Tizen.Metadata.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-OpenAL">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Sound_Manager">\r
+ <tct_info>Tizen.Multimedia.Tests</tct_info>\r
+ <tct_info>Tizen.Multimedia.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Sound_Pool">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Tone_Player">\r
+ <tct_info>Tizen.AudioIO.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-WAV_Player">\r
+ <tct_info>Tizen.AudioIO.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Webrtc">\r
+ <tct_info>Tizen.WebRTC.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Editor">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-ASP">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-DNSSD">\r
+ <tct_info>Tizen.Nsd.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-SSDP">\r
+ <tct_info>Tizen.Nsd.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_BREDR">\r
+ <tct_info>Tizen.Network.Bluetooth.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_LE">\r
+ <tct_info>Tizen.Network.Bluetooth.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_Call_Audio">\r
+ <tct_info>Tizen.Network.Bluetooth.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_Media_Audio">\r
+ <tct_info>Tizen.Network.Bluetooth.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_Transfer">\r
+ <tct_info>Tizen.Network.Bluetooth.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Curl" />\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-HTTP">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-STC">\r
+ <tct_info>Tizen.Network.Stc.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-INM">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-VPN_Service">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-MTP">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-WiFi_Direct">\r
+ <tct_info>Tizen.Wifidirect.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-UserAwareness">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-Device_Policy">\r
+ <tct_info>Tizen.DevicePolicyManager.Tests</tct_info>\r
+ <tct_info>Tizen.DevicePolicyManager.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-Privilege_Info">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-Privacy_Privilege">\r
+ <tct_info>Tizen.PrivacyPrivilegeManager.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-YACA">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-CSR" />\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-OpenSSL" />\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Device">\r
+ <tct_info>Tizen.Device.Tests</tct_info>\r
+ <tct_info>Tizen.Device.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Feedback">\r
+ <tct_info>Tizen.Feedback.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Runtime_Information">\r
+ <tct_info>Tizen.Information.Tests</tct_info>\r
+ <tct_info>Tizen.Information.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Sensor_Recorder">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Sensor_Listener">\r
+ <tct_info>Tizen.Sensor.Tests</tct_info>\r
+ <tct_info>Tizen.Sensor.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Storage">\r
+ <tct_info>Tizen.System.Tests</tct_info>\r
+ <tct_info>Tizen.System.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-System_Settings">\r
+ <tct_info>Tizen.Systemsettings.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-USB_Host">\r
+ <tct_info>Tizen.Usb.Tests</tct_info>\r
+ <tct_info>Tizen.Usb.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Resource_Monitor">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Cairo">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-EFL_Extension">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-EFL_NativeUIToolkit">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Tizen_WS_Shell">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-EFL_MainLoop" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-FontConfig" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Freetype" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-HarfBuzz" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Clipboard_History_Manager">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-External_Output_Manager">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Minicontrol">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-SDL_GL">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-TBM_Surface">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Input_Method">\r
+ <tct_info>Tizen.Inputmethod.Tests</tct_info>\r
+ <tct_info>Tizen.Inputmethod.Manual.Tests</tct_info>\r
+ <tct_info>Tizen.Inputmethodmanager.Tests</tct_info>\r
+ <tct_info>Tizen.Inputmethodmanager.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-STT">\r
+ <tct_info>Tizen.Stt.Tests</tct_info>\r
+ <tct_info>Tizen.Stt.Manual.Tests</tct_info>\r
+ <tct_info>Tizen.SttEngine.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-TTS">\r
+ <tct_info>Tizen.Tts.Tests</tct_info>\r
+ <tct_info>Tizen.Tts.Manual.Tests</tct_info>\r
+ <tct_info>Tizen.TtsEngine.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Voice_control">\r
+ <tct_info>Tizen.VoiceControl.Tests</tct_info>\r
+ <tct_info>Tizen.VoiceControl.Manual.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Voice_control_elementary">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Sticker">\r
+ <tct_info>Tizen.Sticker.Tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Autofill">\r
+ </bb_info>\r
+</MappingInfo>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0"?>\r
+<MappingInfo>\r
+ <bb_info name="building-blocks-root-Preset_iot_core">\r
+ <tct_info>tct-appcore-agent-native-itc</tct_info>\r
+ <tct_info>tct-appcore-agent-native-utc</tct_info>\r
+ <tct_info>tct-bundle-native-itc</tct_info>\r
+ <tct_info>tct-bundle-native-utc</tct_info>\r
+ <tct_info>tct-dlog-native-itc</tct_info>\r
+ <tct_info>tct-dlog-native-utc</tct_info>\r
+ <tct_info>tct-iotcon-native-itc</tct_info>\r
+ <tct_info>tct-iotcon-native-utc</tct_info>\r
+ <tct_info>tct-key-manager-native-itc</tct_info>\r
+ <tct_info>tct-key-manager-native-utc</tct_info>\r
+ <tct_info>tct-native-common-native-itc</tct_info>\r
+ <tct_info>tct-native-common-native-utc</tct_info>\r
+ <tct_info>tct-system-info-native-ctc</tct_info>\r
+ <tct_info>tct-system-info-native-itc</tct_info>\r
+ <tct_info>tct-system-info-native-utc</tct_info>\r
+ <tct_info>tct-ttrace-native-itc</tct_info>\r
+ <tct_info>tct-trace-native-utc</tct_info>\r
+ <tct_info>tct-wifi-manager-native-itc</tct_info>\r
+ <tct_info>tct-wifi-manager-native-utc</tct_info>\r
+ <tct_info>tct-connection-native-ctc</tct_info>\r
+ <tct_info>tct-connection-native-itc</tct_info>\r
+ <tct_info>tct-connection-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Component_Manager_API">\r
+ <tct_info>tct-component-manager-native-itc</tct_info>\r
+ <tct_info>tct-component-manager-native-utc</tct_info>\r
+ <tct_info>tct-component-based-app-native-itc</tct_info>\r
+ <tct_info>tct-component-based-application-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-Account_Manager">\r
+ <tct_info>tct-accounts-svc-native-itc</tct_info>\r
+ <tct_info>tct-accounts-svc-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-Sync_Manager">\r
+ <tct_info>tct-sync-manager-native-itc</tct_info>\r
+ <tct_info>tct-sync-manager-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Social-Calendar">\r
+ <tct_info>tct-calendar-service2-native-itc</tct_info>\r
+ <tct_info>tct-calendar-service2-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Social-Contacts">\r
+ <tct_info>tct-contacts-service2-native-itc</tct_info>\r
+ <tct_info>tct-contacts-service2-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Messaging-Email">\r
+ <tct_info>tct-email-native-itc</tct_info>\r
+ <tct_info>tct-email-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Social-Phonenumber_utils">\r
+ <tct_info>tct-phonenumber-utils-native-itc</tct_info>\r
+ <tct_info>tct-phonenumber-utils-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-FIDO_Client">\r
+ <tct_info>tct-fido-client-native-itc</tct_info>\r
+ <tct_info>tct-fido-client-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-OAuth2">\r
+ <tct_info>tct-oauth2-native-itc</tct_info>\r
+ <tct_info>tct-oauth2-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Web-WebView">\r
+ <tct_info>tct-webkit2-native-itc</tct_info>\r
+ <tct_info>tct-webkit2-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Alarm_API">\r
+ <tct_info>tct-alarm-native-itc</tct_info>\r
+ <tct_info>tct-alarm-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Attach_Panel">\r
+ <tct_info>tct-attach-panel-native-itc</tct_info>\r
+ <tct_info>tct-attach-panel-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-SoftAP">\r
+ <tct_info>tct-softap-native-utc</tct_info>\r
+ <tct_info>tct-capi-network-softap-native-itc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Badge_API">\r
+ <tct_info>tct-badge-native-itc</tct_info>\r
+ <tct_info>tct-badge-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Data_Control_API">\r
+ <tct_info>tct-data-control-native-itc</tct_info>\r
+ <tct_info>tct-data-control-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Media_Key_API">\r
+ <tct_info>tct-media-key-native-itc</tct_info>\r
+ <tct_info>tct-media-key-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Native_EFL_UI_app_model">\r
+ <tct_info>tct-application-native-itc</tct_info>\r
+ <tct_info>tct-application-native-utc</tct_info>\r
+ <tct_info>tct-app-manager-native-itc</tct_info>\r
+ <tct_info>tct-app-manager-native-utc</tct_info>\r
+ <tct_info>tct-appcore-widget-native-itc</tct_info>\r
+ <tct_info>tct-appcore-widget-native-utc</tct_info>\r
+ <tct_info>tct-widget_service-native-itc</tct_info>\r
+ <tct_info>tct-widget_service-native-utc</tct_info>\r
+ <tct_info>tct-widget_viewer_evas-native-itc</tct_info>\r
+ <tct_info>tct-widget_viewer_evas-native-utc</tct_info>\r
+ <nc />\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Notification_API">\r
+ <tct_info>tct-notification-native-itc</tct_info>\r
+ <tct_info>tct-notification-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Shortcut_API">\r
+ <tct_info>tct-shortcut-native-itc</tct_info>\r
+ <tct_info>tct-shortcut-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Event_API">\r
+ <nc />\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Message_Port_API">\r
+ <tct_info>tct-capi-message-port-native-itc</tct_info>\r
+ <tct_info>tct-capi-message-port-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-RPC_Port_API">\r
+ <tct_info>tct-rpc-port-native-utc</tct_info>\r
+ <tct_info>tct-rpc-port-native-itc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Job_Scheduler_API">\r
+ <tct_info>tct-job-scheduler-native-itc</tct_info>\r
+ <tct_info>tct-job-scheduler-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-TPK_Installation">\r
+ <tct_info>tct-package-manager-native-itc</tct_info>\r
+ <tct_info>tct-package-manager-native-utc</tct_info>\r
+ <nc />\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-External_Storage_Installation">\r
+ <tct_info>tct-package-manager-native-itc</tct_info>\r
+ <tct_info>tct-package-manager-native-utc</tct_info>\r
+ <nc />\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Base-Utils">\r
+ <tct_info>tct-base-utils-native-itc</tct_info>\r
+ <tct_info>tct-base-utils-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Content-Download">\r
+ <tct_info>tct-url-download-native-itc</tct_info>\r
+ <tct_info>tct-url-download-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Content-MIME_Type">\r
+ <tct_info>tct-mime-type-native-itc</tct_info>\r
+ <tct_info>tct-mime-type-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Content-Media_Content">\r
+ <tct_info>tct-media-content-native-itc</tct_info>\r
+ <tct_info>tct-media-content-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Image_Util">\r
+ <tct_info>tct-image-util-native-ctc</tct_info>\r
+ <tct_info>tct-image-util-native-itc</tct_info>\r
+ <tct_info>tct-image-util-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Tool">\r
+ <tct_info>tct-capi-media-tool-native-itc</tct_info>\r
+ <tct_info>tct-mediatool-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Thumbnail_Util">\r
+ <tct_info>tct-thumbnail-util-native-itc</tct_info>\r
+ <tct_info>tct-thumbnail-util-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Barcode">\r
+ <tct_info>tct-media-vision-native-itc</tct_info>\r
+ <tct_info>tct-capi-media-vision-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Face">\r
+ <tct_info>tct-media-vision-native-itc</tct_info>\r
+ <tct_info>tct-capi-media-vision-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Image">\r
+ <tct_info>tct-media-vision-native-itc</tct_info>\r
+ <tct_info>tct-capi-media-vision-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Surveillance">\r
+ <tct_info>tct-media-vision-native-itc</tct_info>\r
+ <tct_info>tct-capi-media-vision-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Inference">\r
+ <tct_info>tct-media-vision-native-itc</tct_info>\r
+ <tct_info>tct-capi-media-vision-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Roi_Tracker">\r
+ <tct_info>tct-media-vision-native-itc</tct_info>\r
+ <tct_info>tct-capi-media-vision-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_3d">\r
+ <tct_info>tct-media-vision-native-itc</tct_info>\r
+ <tct_info>tct-capi-media-vision-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Context-Activity_Geusture_Recognition">\r
+ <tct_info>tct-motion-native-itc</tct_info>\r
+ <tct_info>tct-motion-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Context-Contextual_History">\r
+ <tct_info>tct-context-native-itc</tct_info>\r
+ <tct_info>tct-context-native-utc</tct_info>\r
+ <nc />\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Context-Contextual_Trigger">\r
+ <tct_info>tct-context-native-itc</tct_info>\r
+ <tct_info>tct-context-native-utc</tct_info>\r
+ <nc />\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Location-Geofence_Manager">\r
+ <tct_info>tct-geofence-manager-native-itc</tct_info>\r
+ <tct_info>tct-geofence-manager-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Location-Location_Manager">\r
+ <tct_info>tct-location-manager-native-ctc</tct_info>\r
+ <tct_info>tct-location-manager-native-itc</tct_info>\r
+ <tct_info>tct-location-manager-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Maps-Maps_Service">\r
+ <tct_info>tct-capi-maps-service-native-itc</tct_info>\r
+ <tct_info>tct-capi-maps-service-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Messaging-Push">\r
+ <tct_info>tct-push-native-itc</tct_info>\r
+ <tct_info>tct-push-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Audio_IO">\r
+ <tct_info>tct-audio-io-native-ctc</tct_info>\r
+ <tct_info>tct-audio-io-native-itc</tct_info>\r
+ <tct_info>tct-audio-io-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Multi_assistant">\r
+ <tct_info>tct-multi-assistant-native-utc</tct_info>\r
+ <tct_info>tct-multi-assistant-native-itc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-MachineLearning-NNStreamer">\r
+ <tct_info>tct-nnstreamer-native-itc</tct_info>\r
+ <tct_info>tct-nnstreamer-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-MachineLearning-NNTrainer">\r
+ <tct_info>tct-nntrainer-native-itc</tct_info>\r
+ <tct_info>tct-nntrainer-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Camera">\r
+ <tct_info>tct-camera-native-ctc</tct_info>\r
+ <tct_info>tct-camera-native-itc</tct_info>\r
+ <tct_info>tct-camera-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Codec">\r
+ <tct_info>tct-mediacodec-native-ctc</tct_info>\r
+ <tct_info>tct-mediacodec-native-itc</tct_info>\r
+ <tct_info>tct-mediacodec-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Controller">\r
+ <tct_info>tct-media-controller-native-itc</tct_info>\r
+ <tct_info>tct-media-controller-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Player">\r
+ <tct_info>tct-player-native-ctc</tct_info>\r
+ <tct_info>tct-player-native-itc</tct_info>\r
+ <tct_info>tct-player-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Recorder">\r
+ <tct_info>tct-recorder-native-itc</tct_info>\r
+ <tct_info>tct-recorder-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Demuxer">\r
+ <tct_info>tct-capi-mediademuxer-native-itc</tct_info>\r
+ <tct_info>tct-mediademuxer-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Muxer">\r
+ <tct_info>tct-capi-mediamuxer-native-itc</tct_info>\r
+ <tct_info>tct-mediamuxer-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Streamer">\r
+ <tct_info>tct-capi-media-streamer-native-itc</tct_info>\r
+ <tct_info>tct-capi-media-streamer-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Stream_Recorder">\r
+ <tct_info>tct-mediastreamrecorder-native-itc</tct_info>\r
+ <tct_info>tct-streamrecorder-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Screen_Mirroring">\r
+ <tct_info>tct-screen-mirroring-native-itc</tct_info>\r
+ <tct_info>tct-screen-mirroring-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Metadata_Editor">\r
+ <tct_info>tct-metadata-editor-native-itc</tct_info>\r
+ <tct_info>tct-metadata-editor-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Metadata_Extractor">\r
+ <tct_info>tct-metadata-extractor-native-itc</tct_info>\r
+ <tct_info>tct-metadata-extractor-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-OpenAL">\r
+ <tct_info>tct-openal-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Sound_Manager">\r
+ <tct_info>tct-sound-manager-native-ctc</tct_info>\r
+ <tct_info>tct-sound-manager-native-itc</tct_info>\r
+ <tct_info>tct-sound-manager-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Sound_Pool">\r
+ <tct_info>tct-sound-pool-native-itc</tct_info>\r
+ <tct_info>tct-sound-pool-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Tone_Player">\r
+ <tct_info>tct-tone-player-native-itc</tct_info>\r
+ <tct_info>tct-tone-player-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-WAV_Player">\r
+ <tct_info>tct-wav-player-native-itc</tct_info>\r
+ <tct_info>tct-wav-player-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Webrtc">\r
+ <tct_info>tct-webrtc-native-itc</tct_info>\r
+ <tct_info>tct-webrtc-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Editor">\r
+ <tct_info>tct-mediaeditor-native-itc</tct_info>\r
+ <tct_info>tct-mediaeditor-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-ASP">\r
+ <tct_info>tct-asp-native-itc</tct_info>\r
+ <tct_info>tct-asp-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-DNSSD">\r
+ <tct_info>tct-nsd-native-itc</tct_info>\r
+ <tct_info>tct-nsd-native-utc</tct_info>\r
+ <nc />\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-SSDP">\r
+ <tct_info>tct-nsd-native-itc</tct_info>\r
+ <tct_info>tct-nsd-native-utc</tct_info>\r
+ <nc />\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_BREDR">\r
+ <tct_info>tct-bluetooth-native-itc</tct_info>\r
+ <tct_info>tct-bluetooth-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_LE">\r
+ <tct_info>tct-bluetooth-native-itc</tct_info>\r
+ <tct_info>tct-bluetooth-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_Call_Audio" />\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_Media_Audio" />\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_Transfer" />\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Curl" />\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-HTTP">\r
+ <tct_info>tct-http-native-itc</tct_info>\r
+ <tct_info>tct-http-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-STC">\r
+ <tct_info>tct-stc-native-itc</tct_info>\r
+ <tct_info>tct-stc-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-INM">\r
+ <tct_info>tct-capi-network-inm-native-itc </tct_info>\r
+ <tct_info>tct-intelligent-network-monitoring-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-VPN_Service">\r
+ <tct_info>tct-vpn-service-native-itc</tct_info>\r
+ <tct_info>tct-vpn-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-MTP">\r
+ <tct_info>tct-mtp-native-itc</tct_info>\r
+ <tct_info>tct-mtp-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-WiFi_Direct">\r
+ <tct_info>tct-wifi-direct-native-ctc</tct_info>\r
+ <tct_info>tct-wifi-direct-native-itc</tct_info>\r
+ <tct_info>tct-wifi-direct-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-UserAwareness">\r
+ <tct_info>tct-capi-network-ua-native-itc</tct_info>\r
+ <tct_info>tct-ua-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-Device_Policy">\r
+ <nc />\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-Privilege_Info">\r
+ <tct_info>tct-privilege-info-native-itc</tct_info>\r
+ <tct_info>tct-privilege-info-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-Privacy_Privilege">\r
+ <tct_info>tct-privacy-privilege-manager-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-YACA">\r
+ <tct_info>tct-yaca-native-itc</tct_info>\r
+ <tct_info>tct-yaca-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-CSR" />\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-OpenSSL" />\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Device">\r
+ <tct_info>tct-device-native-ctc</tct_info>\r
+ <tct_info>tct-device-native-itc</tct_info>\r
+ <tct_info>tct-device-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Feedback">\r
+ <tct_info>tct-libfeedback-native-itc</tct_info>\r
+ <tct_info>tct-libfeedback-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Runtime_Information">\r
+ <tct_info>tct-runtime-info-native-ctc</tct_info>\r
+ <tct_info>tct-runtime-info-native-itc</tct_info>\r
+ <tct_info>tct-runtime-info-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Sensor_Recorder">\r
+ <tct_info>tct-sensor-native-ctc</tct_info>\r
+ <tct_info>tct-sensor-native-itc</tct_info>\r
+ <tct_info>tct-sensor-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Sensor_Listener">\r
+ <tct_info>tct-sensor-native-ctc</tct_info>\r
+ <tct_info>tct-sensor-native-itc</tct_info>\r
+ <tct_info>tct-sensor-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Storage">\r
+ <tct_info>tct-libstorage-native-itc</tct_info>\r
+ <tct_info>tct-libstorage-native-utc</tct_info>\r
+ <tct_info>tct-libstorage64-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-System_Settings">\r
+ <tct_info>tct-capi-system-system-settings-native-itc</tct_info>\r
+ <tct_info>tct-capi-system-system-settings-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-USB_Host">\r
+ <tct_info>tct-usb-host-native-itc</tct_info>\r
+ <tct_info>tct-usb-host-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Resource_Monitor">\r
+ <tct_info>tct-resource-monitor-native-itc</tct_info>\r
+ <tct_info>tct-resource-monitor-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Cairo">\r
+ <tct_info>tct-cairo-native-itc</tct_info>\r
+ <tct_info>tct-cairo-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-EFL_Extension">\r
+ <tct_info>tct-efl-extension-native-itc</tct_info>\r
+ <tct_info>tct-efl-extension-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-EFL_NativeUIToolkit">\r
+ <tct_info>tct-efl-util-native-itc</tct_info>\r
+ <tct_info>tct-efl-util-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Tizen_WS_Shell">\r
+ <tct_info>tct-tzsh-quickpanel-native-itc</tct_info>\r
+ <tct_info>tct-tzsh-quickpanel-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-EFL_MainLoop" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-FontConfig" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Freetype" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-HarfBuzz" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Clipboard_History_Manager">\r
+ <tct_info>tct-cbhm-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-External_Output_Manager">\r
+ <tct_info>tct-eom-native-itc</tct_info>\r
+ <tct_info>tct-eom-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Minicontrol">\r
+ <tct_info>tct-minicontrol-native-itc</tct_info>\r
+ <tct_info>tct-minicontrol-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-SDL_GL">\r
+ <tct_info>tct-sdl2-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-TBM_Surface">\r
+ <tct_info>tct-tbm-native-itc</tct_info>\r
+ <tct_info>tct-tbm-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Input_Method">\r
+ <tct_info>tct-capi-ui-inputmethod-native-itc</tct_info>\r
+ <tct_info>tct-capi-ui-inputmethod-native-utc</tct_info>\r
+ <tct_info>tct-capi-ui-inputmethod-manager-native-itc</tct_info>\r
+ <tct_info>tct-capi-ui-inputmethod-manager-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-STT">\r
+ <tct_info>tct-stt-native-itc</tct_info>\r
+ <tct_info>tct-stt-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-TTS">\r
+ <tct_info>tct-tts-native-itc</tct_info>\r
+ <tct_info>tct-tts-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Voice_control">\r
+ <tct_info>tct-voice-control-native-itc</tct_info>\r
+ <tct_info>tct-voice-control-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Voice_control_elementary">\r
+ <tct_info>tct-voice-control-elm-native-itc</tct_info>\r
+ <tct_info>tct-voice-control-elm-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Sticker">\r
+ <tct_info>tct-capi-ui-sticker-native-itc</tct_info>\r
+ <tct_info>tct-capi-ui-sticker-native-utc</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Autofill">\r
+ <tct_info>tct-capi-ui-autofill-native-itc</tct_info>\r
+ <tct_info>tct-capi-ui-autofill-native-utc</tct_info>\r
+ </bb_info>\r
+</MappingInfo>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0"?>\r
+<MappingInfo>\r
+ <bb_info name="building-blocks-root-Preset_iot_core">\r
+ <tct_info>tct-iotcon-tizen-tests</tct_info>\r
+ <tct_info>tct-keymanager-tizen-tests</tct_info>\r
+ <tct_info>tct-systeminfo-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Component_Manager_API">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-Account_Manager">\r
+ <tct_info>tct-accounts-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-Sync_Manager">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Social-Calendar">\r
+ <tct_info>tct-calendar-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Social-Contacts">\r
+ <tct_info>tct-contact-tizen-tests</tct_info>\r
+ <tct_info>tct-callhistory-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Messaging-Email">\r
+ <tct_info>tct-messaging-email-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Social-Phonenumber_utils">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-FIDO_Client">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Account-OAuth2">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Web-WebView">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Alarm_API">\r
+ <tct_info>tct-alarm-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Attach_Panel">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-SoftAP">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Badge_API">\r
+ <tct_info>tct-badge-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Data_Control_API">\r
+ <tct_info>tct-datacontrol-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Media_Key_API">\r
+ <tct_info>tct-mediakey-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Native_EFL_UI_app_model">\r
+ <tct_info>tct-application-tizen-tests</tct_info>\r
+ <tct_info>tct-widgetservice-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Notification_API">\r
+ <tct_info>tct-notification-tizen-tests</tct_info>\r
+ <tct_info>tct-alarm-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Shortcut_API">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Event_API">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Message_Port_API">\r
+ <tct_info>tct-messageport-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-RPC_Port_API">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-Job_Scheduler_API">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-TPK_Installation">\r
+ <tct_info>tct-package-tizen-tests</tct_info>\r
+ <tct_info>tct-application-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-AppFramework-External_Storage_Installation">\r
+ <tct_info>tct-package-tizen-tests</tct_info>\r
+ <tct_info>tct-application-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Base-Utils">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Content-Download">\r
+ <tct_info>tct-download-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Content-MIME_Type">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Content-Media_Content">\r
+ <tct_info>tct-content-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Image_Util">\r
+ <tct_info>tct-metadata-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Tool">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Thumbnail_Util">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Barcode">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Face">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Image">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Surveillance">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Inference">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_Roi_Tracker">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Vision_3d">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Context-Activity_Geusture_Recognition">\r
+ <tct_info>tct-humanactivitymonitor-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Context-Contextual_History">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Context-Contextual_Trigger">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Location-Geofence_Manager">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Location-Location_Manager">\r
+ <tct_info>tct-humanactivitymonitor-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Maps-Maps_Service">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Messaging-Push">\r
+ <tct_info>tct-push-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Audio_IO">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Multi_assistant">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-MachineLearning-NNStreamer">\r
+ <tct_info>tct-ml-tizen-tests</tct_info>\r
+ <tct_info>tct-mlpipeline-tizen-tests</tct_info>\r
+ <tct_info>tct-mlsingleshot-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-MachineLearning-NNTrainer">\r
+ <tct_info>tct-mltrain-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Camera">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Codec">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Controller">\r
+ <tct_info>tct-mediacontroller-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Player">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Recorder">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Demuxer">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Muxer">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Streamer">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Stream_Recorder">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Screen_Mirroring">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Metadata_Editor">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Metadata_Extractor">\r
+ <tct_info>tct-metadata-tizen-tests</tct_info>\r
+ <tct_info>tct-content-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-OpenAL">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Sound_Manager">\r
+ <tct_info>tct-radio-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Sound_Pool">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Tone_Player">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-WAV_Player">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Webrtc">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Multimedia-Media_Editor">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-ASP">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-DNSSD">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-SSDP">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_BREDR">\r
+ <tct_info>tct-bluetooth-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_LE">\r
+ <tct_info>tct-bluetooth-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_Call_Audio" />\r
+ <tct_info>tct-bluetooth-tizen-tests</tct_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_Media_Audio" />\r
+ <tct_info>tct-bluetooth-tizen-tests</tct_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Bluetooth_Transfer" />\r
+ <tct_info>tct-bluetooth-tizen-tests</tct_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-Curl" />\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-HTTP">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-STC">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-INM">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-VPN_Service">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-MTP">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-WiFi_Direct">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Network-UserAwareness">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-Device_Policy">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-Privilege_Info">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-Privacy_Privilege">\r
+ <tct_info>tct-ppm-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-YACA">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-CSR" />\r
+ <bb_info name="building-blocks-sub2-domain_API-Security-OpenSSL" />\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Device">\r
+ <tct_info>tct-systeminfo-tizen-tests</tct_info>\r
+ <tct_info>tct-power-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Feedback">\r
+ <tct_info>tct-feedback-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Runtime_Information">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Sensor_Recorder">\r
+ <tct_info>tct-humanactivitymonitor-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Sensor_Listener">\r
+ <tct_info>tct-sensor-tizen-tests</tct_info>\r
+ <tct_info>tct-humanactivitymonitor-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Storage">\r
+ <tct_info>tct-systeminfo-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-System_Settings">\r
+ <tct_info>tct-systemsetting-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-USB_Host">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-System-Resource_Monitor">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Cairo">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-EFL_Extension">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-EFL_NativeUIToolkit">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Tizen_WS_Shell">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-EFL_MainLoop" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-FontConfig" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Freetype" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-HarfBuzz" />\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Clipboard_History_Manager">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-External_Output_Manager">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-Minicontrol">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-SDL_GL">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UI-TBM_Surface">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Input_Method">\r
+ <tct_info>tct-inputdevice-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-STT">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-TTS">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Voice_control">\r
+ <tct_info>tct-voicecontrol-tizen-tests</tct_info>\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Voice_control_elementary">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Sticker">\r
+ </bb_info>\r
+ <bb_info name="building-blocks-sub2-domain_API-UIX-Autofill">\r
+ </bb_info>\r
+</MappingInfo>
\ No newline at end of file
from sdbmanager import SdbManager
+
class DeviceManager(object):
INSTANCE = None
devices = []
if len(connDevices) > 0:
self._updateConnDevice(connDevices)
print("Connected Devices = %s" \
- % str([dev.devId for dev in self.devices]))
+ % str([dev.devId for dev in self.devices]))
return True
else:
self._resetDevices()
return False
+
class SdbDevice:
def __init__(self, devId, devName, devType):
self.devId = devId
SDB_LS = "sdb -s %s shell ls -al"
FILE_FOUND_SCRIPT = "[ -f %s ] && echo \"Found\" || echo \"Not Found\""
+
class SdbManager:
@staticmethod
def hostCommand(command):
print(command)
proc = subprocess.Popen(command, shell=True, \
- stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ stdout=subprocess.PIPE, stderr=subprocess.PIPE)
while True:
exit_code = proc.poll()
def hostCommandwithResult(command):
print(command)
proc = subprocess.Popen(command, shell=True, \
- stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ stdout=subprocess.PIPE, stderr=subprocess.PIPE)
while True:
exit_code = proc.poll()
if exit_code is None:
print(FAIL_LOG)
errLog = re_stderr.read().decode('utf-8')
- if errLog : print(errLog)
+ if errLog: print(errLog)
return None
else:
outLog = re_stdout.read().decode('utf-8')
def sdbSetDate(devid):
print("set device date")
HDATE = '`date "+%Y-%m-%d %H:%M:%S %Z"`'
- date_cmd = '"date -s \''+ HDATE + '\'"'
+ date_cmd = '"date -s \'' + HDATE + '\'"'
SdbManager.sdbShell(devid, date_cmd)
@staticmethod
def getchildpids(ppid):
"""Return a list of children process"""
command = "ps -ef | awk '{if ($3 == %s) print $2;}'" % str(
- ppid)
+ ppid)
pids = os.popen(command).read()
pids = pids.split()
return pids
match = pattern.search(str(error))
if not match:
print("[ Error: fail to kill pid: %s," \
- " error: %s ]\n" % (int(pid), error))
+ " error: %s ]\n" % (int(pid), error))
# kill for windows platform
else:
kernel32 = ctypes.windll.kernel32
import threading
import subprocess
-
from optparse import OptionParser
from devicemanager import DeviceManager
from sdbmanager import SdbManager
DEVID = ""
-TIZENV = "tizen_7.0"
+TIZENV = "tizen_8.0"
DLOG_CLEAR = "dlogutil -c"
DLOG_UTIL = "sdb -s %s shell dlogutil -v time"
DEVICE_SUITE_TARGET_30 = tct_parser.get('DEVICE', 'DEVICE_SUITE_TARGET_30')
DEVICE_EXECUTION_MODE_30 = tct_parser.get('DEVICE', 'DEVICE_EXECUTION_MODE_30')
-if TIZENV.find('tizen_7.0') > -1:
+if TIZENV.find('tizen_8.0') > -1:
DEVICE_SUITE_TARGET = DEVICE_SUITE_TARGET_30
else:
DEVICE_SUITE_TARGET = DEVICE_SUITE_TARGET_24
+
def LS(root, file_name, extension=None):
import glob
for f in files:
return BASENAME(f)
+
def get_device_arch():
global DEV_ARCH
- #ARCHCMD = SDB_SERNO + " shell \"cat /etc/products.d/tizen.prod |grep \<arch\""
- #arch_cmd = "cat /etc/config/model-config.xml | grep tizen.org/feature/platform.core.cpu.arch"
+ # ARCHCMD = SDB_SERNO + " shell \"cat /etc/products.d/tizen.prod |grep \<arch\""
+ # arch_cmd = "cat /etc/config/model-config.xml | grep tizen.org/feature/platform.core.cpu.arch"
arch_cmd = "cat /etc/tizen-build.conf | grep TZ_BUILD_ARCH"
- #result example : <key name="tizen.org/feature/platform.core.cpu.arch" type="string">armv7</key>
+ # result example : <key name="tizen.org/feature/platform.core.cpu.arch" type="string">armv7</key>
result = SdbManager.sdbShell(DEVID, arch_cmd)
if result and len(result) > 0:
arch_str = result.split('\n')[0]
elif arch_str and arch_str.find('x86_64') > -1:
DEV_ARCH = "ia64"
print("info: [* Arch Type : ia64 *]")
- elif arch_str and (arch_str.find("i686") > -1 or arch_str.find("x86") > -1 or arch_str.find("i386") > -1):
+ elif arch_str and (arch_str.find("i686") > -1 or arch_str.find("x86") > -1 or arch_str.find(
+ "i386") > -1):
DEV_ARCH = "ia"
print("info: [* Arch Type : ia *]")
else:
else:
print("info: No process of %s activated" % process_name)
+
def remove_tinyweb():
SdbManager.sdbShell(DEVID, "rm -f /opt/home/developer/server.pem > /dev/null 2>&1")
SdbManager.sdbShell(DEVID, "rm -f /opt/home/developer/tinyweb > /dev/null 2>&1")
SdbManager.sdbShell(DEVID, "rm -f /opt/home/developer/libssl.so > /dev/null 2>&1")
SdbManager.sdbShell(DEVID, "rm -f /opt/home/developer/libcrypto.so > /dev/null 2>&1")
+
def remove_stub():
SdbManager.sdbShell(DEVID, "rm -f /opt/home/developer/testkit-stub")
def uninstall_testconfig():
- if TIZENV.find('tizen_7.0') > -1:
+ if TIZENV.find('tizen_8.0') > -1:
inst_path = RESRC_DIR + os.sep + 'tct-testconfig' + os.sep + 'inst.py'
- SdbManager.hostCommand("python %s -s %s -u" % (inst_path, DEVID))
+ SdbManager.hostCommand("python3 %s -s %s -u" % (inst_path, DEVID))
else:
RPMPKG = LS(RESRC_DIR, "tct-testconfig")
if not RPMPKG:
def uninstall_behavior():
print("info: Uninstall behavior tool.")
- if TIZENV.find('tizen_7.0') > -1:
+ if TIZENV.find('tizen_8.0') > -1:
pass
else:
uninst_cmd = JOIN(DEVICE_SUITE_TARGET, 'tct/opt/tct-behavior-tests/inst.sh') + ' -u'
SdbManager.sdbShell(DEVID, 'mkdir -p ' + JOIN(DEVICE_SUITE_TARGET, 'Documents/'))
return True
else:
- print("#WARNING#: The directory resource does not exists. Please copy test resources to %s " % RESRC_DIR)
+ print(
+ "#WARNING#: The directory resource does not exists. Please copy test resources to %s " % RESRC_DIR)
return False
+
def check_tinyweb():
print("info: Check tinyweb.")
result = SdbManager.sdbShell(DEVID, "ls /opt/home/developer/ | grep tinyweb")
launch_cmd = 'sdb -s ' + DEVID + ' shell ' + '"env LD_LIBRARY_PATH=/opt/home/developer PATH=' + dpath.strip() + \
':/opt/home/developer/ tinyweb -ssl_certificate /opt/home/developer/server.pem -document_root ' + \
- JOIN(DEVICE_SUITE_TARGET, 'tct') + ' -listening_ports 80,8080,8081,8082,8083,8443s; sleep 3s" 0> /dev/null'
+ JOIN(DEVICE_SUITE_TARGET,
+ 'tct') + ' -listening_ports 80,8080,8081,8082,8083,8443s; sleep 3s" 0> /dev/null'
SdbManager.sdbCommand(launch_cmd, 10)
print("#ERROR#: Active process tinyweb failed.")
return False
+
def install_tinyweb():
print("info: Install tinyweb")
- SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'tinyweb'), '/opt/home/developer/')
+ SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'tinyweb'),
+ '/opt/home/developer/')
SdbManager.sdbShell(DEVID, "chmod 777 /opt/home/developer/tinyweb")
- SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'cgi-getcookie'), '/opt/home/developer/')
+ SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'cgi-getcookie'),
+ '/opt/home/developer/')
SdbManager.sdbShell(DEVID, "chmod 777 /opt/home/developer/cgi-getcookie")
- SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'cgi-getfield'), '/opt/home/developer/')
+ SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'cgi-getfield'),
+ '/opt/home/developer/')
SdbManager.sdbShell(DEVID, "chmod 777 /opt/home/developer/cgi-getfield")
- SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'libmongoose.so'), '/opt/home/developer/')
+ SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'libmongoose.so'),
+ '/opt/home/developer/')
SdbManager.sdbShell(DEVID, "chmod 777 /opt/home/developer/libmongoose.so")
- SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'echo.so'), '/opt/home/developer/')
+ SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'echo.so'),
+ '/opt/home/developer/')
SdbManager.sdbShell(DEVID, "chmod 777 /opt/home/developer/echo.so")
- SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'server.pem'), '/opt/home/developer/')
+ SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'tinyweb', DEV_ARCH, 'server.pem'),
+ '/opt/home/developer/')
SdbManager.sdbShell(DEVID, "chmod 777 /opt/home/developer/server.pem")
if DEV_ARCH == "arm":
SdbManager.sdbShell(DEVID, "ln -s /usr/lib/libssl.so.1.0.0 /opt/home/developer/libssl.so")
- SdbManager.sdbShell(DEVID, "ln -s /usr/lib/libcrypto.so.1.0.0 /opt/home/developer/libcrypto.so")
+ SdbManager.sdbShell(DEVID,
+ "ln -s /usr/lib/libcrypto.so.1.0.0 /opt/home/developer/libcrypto.so")
elif DEV_ARCH == "ia":
SdbManager.sdbShell(DEVID, "ln -s /usr/lib/libssl.so.1.0.0 /opt/home/developer/libssl.so")
- SdbManager.sdbShell(DEVID, "ln -s /usr/lib/libcrypto.so.1.0.0 /opt/home/developer/libcrypto.so")
+ SdbManager.sdbShell(DEVID,
+ "ln -s /usr/lib/libcrypto.so.1.0.0 /opt/home/developer/libcrypto.so")
elif DEV_ARCH == "aarch64":
SdbManager.sdbShell(DEVID, "ln -s /usr/lib64/libssl.so.1.0.0 /opt/home/developer/libssl.so")
- SdbManager.sdbShell(DEVID, "ln -s /usr/lib64/libcrypto.so.1.0.0 /opt/home/developer/libcrypto.so")
+ SdbManager.sdbShell(DEVID,
+ "ln -s /usr/lib64/libcrypto.so.1.0.0 /opt/home/developer/libcrypto.so")
elif DEV_ARCH == "ia64":
SdbManager.sdbShell(DEVID, "ln -s /usr/lib64/libssl.so.1.0.0 /opt/home/developer/libssl.so")
- SdbManager.sdbShell(DEVID, "ln -s /usr/lib64/libcrypto.so.1.0.0 /opt/home/developer/libcrypto.so")
+ SdbManager.sdbShell(DEVID,
+ "ln -s /usr/lib64/libcrypto.so.1.0.0 /opt/home/developer/libcrypto.so")
def check_stub():
def install_stub():
print("info: Install testkit-stub.")
- SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'testkit-stub', DEV_ARCH, 'testkit-stub'), '/opt/home/developer/testkit-stub')
+ SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, 'testkit-stub', DEV_ARCH, 'testkit-stub'),
+ '/opt/home/developer/testkit-stub')
SdbManager.sdbShell(DEVID, "chmod a+x /opt/home/developer/testkit-stub")
SdbManager.sdbShell(DEVID, "chsmack -e \"User\" /opt/home/developer/testkit-stub")
def check_testconfig():
- result = SdbManager.sdbShell(DEVID, '"cat ' + JOIN(DEVICE_SUITE_TARGET, 'tct/opt/tct-testconfig/tct-testconfig.ini') + ' | grep tct"')
+ result = SdbManager.sdbShell(DEVID, '"cat ' + JOIN(DEVICE_SUITE_TARGET,
+ 'tct/opt/tct-testconfig/tct-testconfig.ini') + ' | grep tct"')
if result and len(result) > 0 and result.find('No such file or directory') == -1:
print("info: testconfig has already been installed on device.")
else:
def install_testconfig():
print("info: Install testconfig.")
- if TIZENV.find('tizen_7.0') > -1:
+ if TIZENV.find('tizen_8.0') > -1:
instPath = RESRC_DIR + os.sep + 'tct-testconfig' + os.sep + 'inst.py'
- SdbManager.hostCommand("python %s -s %s" % (instPath, DEVID))
+ SdbManager.hostCommand("python3 %s -s %s" % (instPath, DEVID))
else:
conf_pkg = LS(RESRC_DIR, "tct-testconfig")
SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, conf_pkg), JOIN(DEVICE_SUITE_TARGET, 'tct/'))
- SdbManager.sdbShell(DEVID, 'unzip -uo ' + JOIN(DEVICE_SUITE_TARGET, 'tct/') + conf_pkg + ' -d ' + JOIN(DEVICE_SUITE_TARGET, 'tct/'))
+ SdbManager.sdbShell(DEVID, 'unzip -uo ' + JOIN(DEVICE_SUITE_TARGET,
+ 'tct/') + conf_pkg + ' -d ' + JOIN(
+ DEVICE_SUITE_TARGET, 'tct/'))
SdbManager.sdbShell(DEVID, JOIN(DEVICE_SUITE_TARGET, 'tct/opt/tct-testconfig/inst.sh'))
- result = SdbManager.sdbShell(DEVID, 'cat ' + JOIN(DEVICE_SUITE_TARGET, 'tct/opt/tct-testconfig/tct-testconfig.ini') + ' | grep tct')
+ result = SdbManager.sdbShell(DEVID, 'cat ' + JOIN(DEVICE_SUITE_TARGET,
+ 'tct/opt/tct-testconfig/tct-testconfig.ini') + ' | grep tct')
if result and len(result) > 0:
print("info: Install testconfig successfully.")
return True
+
def install_behavior(profile_name):
print("info: Install behavior tool.")
- if not profile_name in ['wearable', 'mobile', 'tv', 'ivi']:
+ if not profile_name in ['wearable', 'mobile', 'tv', 'ivi', 'headed']:
print("#WARNING#: Invalid device profile value %s" % profile_name)
return False
- if TIZENV.find('tizen_7.0') > -1:
- RPMPKG = "tct-behavior-tests-7.0.zip"
+ if TIZENV.find('tizen_8.0') > -1:
+ RPMPKG = "tct-behavior-tests-8.0.zip"
opt_rpm_path = PKGS_DIR + "s" + os.sep + profile_name + os.sep + RPMPKG
local_rpm_path = PKGS_DIR + os.sep + profile_name + os.sep + RPMPKG
install_rpm = opt_rpm_path
install_dest = PKGS_DIR + "s" + os.sep + profile_name + os.sep
install_cmd = PKGS_DIR + "s" + os.sep + profile_name + os.sep + \
- 'opt' + os.sep + "tct-behavior-tests" + os.sep + "inst.py"
+ 'opt' + os.sep + "tct-behavior-tests" + os.sep + "inst.py"
elif os.path.exists(local_rpm_path):
install_rpm = local_rpm_path
install_dest = PKGS_DIR + os.sep + profile_name + os.sep
install_cmd = PKGS_DIR + os.sep + profile_name + os.sep + \
- 'opt' + os.sep + "tct-behavior-tests" + os.sep + "inst.py"
+ 'opt' + os.sep + "tct-behavior-tests" + os.sep + "inst.py"
SdbManager.hostCommand("rm -rf %s" % install_dest + "opt/tct-behavior-tests")
SdbManager.hostCommand("unzip -uo %s -d %s" % (install_rpm, install_dest))
- SdbManager.hostCommand("python %s -s %s" % (install_cmd, DEVID))
+ SdbManager.hostCommand("python3 %s -s %s" % (install_cmd, DEVID))
print("info: Check tizen-web-ui-fw. Please wait...")
check_uifw = SdbManager.sdbShell(DEVID, "ls /usr/share/ | grep tizen-web-ui-fw")
print("info: tizen-web-ui-fw has been installed on device.")
else:
SdbManager.sdbShell(DEVID, '"mkdir -p /usr/share/tizen-web-ui-fw/"')
- SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, "tizen-web-ui-fw"), '/usr/share/tizen-web-ui-fw/')
+ SdbManager.sdbPush(DEVID, JOIN(RESRC_DIR, "tizen-web-ui-fw"),
+ '/usr/share/tizen-web-ui-fw/')
else:
pass
return True
-
def update_tctconf_file():
print("Updating TCT_CONFIG file")
tct_config_old = "/opt/tools/TCT_CONFIG"
- tct_config_new = "/opt/tools/shell/tmp/%s/TCT_CONFIG"%DEVID
+ tct_config_new = "/opt/tools/shell/tmp/%s/TCT_CONFIG" % DEVID
if os.path.exists(tct_config_new):
os.remove(tct_config_new)
tmp = ""
for line in config_content:
- if line.find("DEVICE_PHYSICAL_STORAGE_30")!=-1:
+ if line.find("DEVICE_PHYSICAL_STORAGE_30") != -1:
tmp = getDevPhysicalStorage()
if tmp is None:
f_new.write(line)
else:
- f_new.write("DEVICE_PHYSICAL_STORAGE_30="+tmp.strip()+"\n")
- elif line.find("DEVICE_ADMIN_USER_APPS_ROOT_30")!=-1:
+ f_new.write("DEVICE_PHYSICAL_STORAGE_30=" + tmp.strip() + "\n")
+ elif line.find("DEVICE_ADMIN_USER_APPS_ROOT_30") != -1:
tmp = getDevAdminUserAppsRoot()
if tmp is None:
f_new.write(line)
else:
- f_new.write("DEVICE_ADMIN_USER_APPS_ROOT_30="+tmp.strip()+"\n")
- elif line.find("DEVICE_STORAGE_30")!=-1:
+ f_new.write("DEVICE_ADMIN_USER_APPS_ROOT_30=" + tmp.strip() + "\n")
+ elif line.find("DEVICE_STORAGE_30") != -1:
tmp = getDevStorage()
if tmp is None:
f_new.write(line)
else:
- f_new.write("DEVICE_STORAGE_30="+tmp.strip()+"\n")
+ f_new.write("DEVICE_STORAGE_30=" + tmp.strip() + "\n")
else:
f_new.write(line)
f_new.close()
+
def getDevPhysicalStorage():
devphysicalstorage_cmd = "tzplatform-get -u owner TZ_USER_CONTENT"
print(devphysicalstorage_cmd)
ret = SdbManager.sdbShell(DEVID, devphysicalstorage_cmd)
print(ret)
if ret is None:
- print("Cannot get info from cmd : %s" %devphysicalstorage_cmd)
+ print("Cannot get info from cmd : %s" % devphysicalstorage_cmd)
return None
else:
- ret = ret.replace('/opt/usr/','/')
- print("DEVICE_PHYSICAL_STORAGE_30 : %s" %(ret.split('=')[1]))
+ ret = ret.replace('/opt/usr/', '/')
+ print("DEVICE_PHYSICAL_STORAGE_30 : %s" % (ret.split('=')[1]))
return ret.split('=')[1]
+
def getDevAdminUserAppsRoot():
devadminuserappsroot_cmd = "tzplatform-get TZ_SYS_RW_APP"
ret = SdbManager.sdbShell(DEVID, devadminuserappsroot_cmd)
if ret is None:
- print("Cannot get info from cmd : %s" %devadminuserappsroot_cmd)
+ print("Cannot get info from cmd : %s" % devadminuserappsroot_cmd)
return None
else:
- print("DEVCIE_ADMIN_USER_APPS_ROOT_30 : %s" %(ret.split('=')[1]))
+ print("DEVCIE_ADMIN_USER_APPS_ROOT_30 : %s" % (ret.split('=')[1]))
return ret.split('=')[1]
+
def getDevStorage():
devstorage_cmd = "tzplatform-get -u owner TZ_USER_CONTENT"
print(devstorage_cmd)
ret = SdbManager.sdbShell(DEVID, devstorage_cmd)
print(ret)
if ret is None:
- print("Cannot get info from cmd : %s" %devstorage_cmd)
+ print("Cannot get info from cmd : %s" % devstorage_cmd)
return None
else:
- print("DEVICE_STORAGE_30 : %s" %(ret.split('=')[1]))
+ print("DEVICE_STORAGE_30 : %s" % (ret.split('=')[1]))
return ret.split('=')[1]
+
def push_tctconf_file():
- updated_tct_conf_local = "/opt/tools/shell/tmp/%s/TCT_CONFIG"%DEVID
+ updated_tct_conf_local = "/opt/tools/shell/tmp/%s/TCT_CONFIG" % DEVID
remote = DEVICE_SUITE_TARGET_30
if not SdbManager.sdbPush(DEVID, updated_tct_conf_local, remote):
print("#ERROR#: TCT_CONFIG file push failed")
wbuffile = file(logfile, "a+")
exit_code = None
proc = subprocess.Popen(args=cmd,
- shell=True,
- stdout=wbuffile,
- stderr=None)
+ shell=True,
+ stdout=wbuffile,
+ stderr=None)
while True:
exit_code = proc.poll()
if exit_code is not None:
install_tinyweb()
launch_tinyweb()
-
print("All of installation process on device completed.")
sys.exit("#ERROR#: The '%s' device Id exists error" % options.deviceid)
else:
if devinst.getDeviceSize() > 1 or devinst.getDeviceSize() == 0:
- sys.exit("#ERROR#: %s devices connected or device not connected" % str(devinst.getDeviceSize()))
+ sys.exit("#ERROR#: %s devices connected or device not connected" % str(
+ devinst.getDeviceSize()))
else:
DEVID = devinst.getSdbDeviceList()[0].getDeviceId()
else:
DLOG_SAVE_PATH = DLOG_SAVE_PATH % (DEVID, options.process)
- #start_debug(DLOG_SAVE_PATH)
+ # start_debug(DLOG_SAVE_PATH)
if not SdbManager.sdbRootOn(DEVID):
sys.exit(-1)
sys.exit(0)
runProcess()
- #stop_debug()
+ # stop_debug()
print("[========== end tct-config-device : %s ==========]" % DEVID)
-
self.CURRENT_TARGET_LITE_PATH = ""
self.CURRENT_SOURCE_LITE_PATH = ""
- #package
+ # package
self.SOURCE_PACKAGE_PATH = ".." + self.sep + "package"
self.TARGET_PACKAGE_PATH = \
- self.sep + self.tizenV + self.sep + "packages"
- #manager
+ self.sep + self.tizenV + self.sep + "packages"
+ # manager
self.SOURCE_MANAGER_PATH = \
- ".." + self.sep + "tools" + self.sep + "manager"
+ ".." + self.sep + "tools" + self.sep + "manager"
self.TARGET_MANAGER_PATH = \
- self.sep + self.tizenV + self.sep + "manager"
- #resource
+ self.sep + self.tizenV + self.sep + "manager"
+ # resource
self.SOURCE_RESOURCE_PATH = ".." + self.sep + "resource"
self.TARGET_RESOURCE_PATH = \
- self.sep + self.tizenV + self.sep + "resource"
- #script
+ self.sep + self.tizenV + self.sep + "resource"
+ # script
self.SOURCE_SCRIPT_PATH = ""
self.TARGET_SCRIPT_PATH = self.sep + self.tizenV + self.sep + "scripts"
- #doc
+ # doc
self.SOURCE_DOC_PATH = ".." + self.sep + "doc"
self.TARGET_DOC_PATH = self.sep + self.tizenV + self.sep + "doc"
def cpScript(self):
self.cpFile(self.CURRENT_SOURCE_BASE_PATH + self.SOURCE_SCRIPT_PATH + \
- self.sep + "healthcheck.ini",
+ self.sep + "healthcheck.ini",
self.CURRENT_TARGET_BASE_PATH + self.TARGET_SCRIPT_PATH + \
- self.sep + "healthcheck.ini")
+ self.sep + "healthcheck.ini")
self.cpFile(self.CURRENT_SOURCE_BASE_PATH + self.SOURCE_SCRIPT_PATH + \
- self.sep + "tct-config-device.py",
+ self.sep + "tct-config-device.py",
self.CURRENT_TARGET_BASE_PATH + self.TARGET_SCRIPT_PATH + \
- self.sep + "tct-config-device.py")
+ self.sep + "tct-config-device.py")
self.cpFile(self.CURRENT_SOURCE_BASE_PATH + self.SOURCE_SCRIPT_PATH + \
- self.sep + "devicemanager.py",
+ self.sep + "devicemanager.py",
self.CURRENT_TARGET_BASE_PATH + self.TARGET_SCRIPT_PATH + \
- self.sep + "devicemanager.py")
+ self.sep + "devicemanager.py")
self.cpFile(self.CURRENT_SOURCE_BASE_PATH + self.SOURCE_SCRIPT_PATH + \
- self.sep + "sdbmanager.py",
+ self.sep + "sdbmanager.py",
self.CURRENT_TARGET_BASE_PATH + self.TARGET_SCRIPT_PATH + \
- self.sep + "sdbmanager.py")
-
+ self.sep + "sdbmanager.py")
def cpResource(self):
if not self.upgrade:
self.cpDir(self.CURRENT_SOURCE_BASE_PATH + self.SOURCE_RESOURCE_PATH,
self.CURRENT_TARGET_BASE_PATH + self.TARGET_RESOURCE_PATH, \
- "resource")
+ "resource")
def cpPackage(self):
self.cpDir(self.CURRENT_SOURCE_BASE_PATH + self.SOURCE_PACKAGE_PATH,
self.CURRENT_TARGET_BASE_PATH + self.TARGET_PACKAGE_PATH, \
- "package")
+ "package")
for r, d, f in os.walk(self.CURRENT_TARGET_BASE_PATH + \
- self.TARGET_PACKAGE_PATH):
+ self.TARGET_PACKAGE_PATH):
if (platform.system() != "Windows"):
os.chmod(r, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO)
if not self.upgrade:
self.cpDir(self.CURRENT_SOURCE_BASE_PATH + self.SOURCE_MANAGER_PATH,
self.CURRENT_TARGET_BASE_PATH + self.TARGET_MANAGER_PATH, \
- "manager")
+ "manager")
for r, d, f in os.walk(self.CURRENT_TARGET_BASE_PATH + \
- self.TARGET_MANAGER_PATH):
+ self.TARGET_MANAGER_PATH):
if (platform.system() != "Windows"):
os.chmod(r, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO)
def makeResult(self):
mgr_folder = os.path.join(self.CURRENT_TARGET_BASE_PATH, \
- self.tizenV + "/manager")
+ self.tizenV + "/manager")
mgr_result_folder = os.path.join(self.CURRENT_TARGET_BASE_PATH, \
- self.tizenV + "/manager/result")
+ self.tizenV + "/manager/result")
shell_result_folder = os.path.join(self.CURRENT_TARGET_BASE_PATH, \
- self.tizenV + "/shell/result")
+ self.tizenV + "/shell/result")
if not os.path.isdir(mgr_folder):
os.makedirs(mgr_folder)
self.cpScript()
self.makeResult()
+
parser = OptionParser()
parser.add_option("-i", "--install", dest="install", action="store_true", \
- default=False, help="copy folders and file into os")
+ default=False, help="copy folders and file into os")
parser.add_option("-p", "--purge", dest="clear", action="store_true", \
- default=False, help="clear all files")
+ default=False, help="clear all files")
parser.add_option("-t", "--tizen-version", dest="tizenV", \
- help="set tizen version infomation")
+ help="set tizen version infomation")
parser.add_option("-u", "--upgrade", dest="upgrade", action="store_true", \
- default=False, help="upgrade tct tools")
+ default=False, help="upgrade tct tools")
(options, args) = parser.parse_args()
NORMAL_TYPE = 3
CSHARP_TCT_TYPE = 4
+
def make_ver_file(tctV, tizenV):
ver_path = "/opt/tct/" + tizenV + "/VERSION"
- #ver_file = open('/opt/tct/tizen_web_3.0/VERSION', 'wa')
+ # ver_file = open('/opt/tct/tizen_web_3.0/VERSION', 'wa')
ver_file = open(ver_path, 'w')
ver_file.write(str(tctV))
ver_file.close()
+
def get_tizenV(afile):
tizenV = ""
ver = afile.split('_')[1]
return tizenV
-def install_release_file(afile, file_type, upgrade):
+def install_release_file(afile, file_type, upgrade):
try:
tizenV = None
- for r,d,f in os.walk(afile):
+ for r, d, f in os.walk(afile):
if (platform.system() != "Windows"):
- os.system("chmod -R 777 "+ r)
+ os.system("chmod -R 777 " + r)
inst_cmd = "python3 " + TCT_INSTALL_SCRIPT
if upgrade:
if file_type is WEB_TCT_TYPE or file_type is CSHARP_TCT_TYPE:
tizenV = get_tizenV(afile)
- os.chdir(afile +"/tools")
+ os.chdir(afile + "/tools")
os.system(inst_cmd + " --tizen-version " + tizenV)
os.chdir("../../")
make_ver_file(str(afile), tizenV)
if file_type is TOOLS_TYPE:
os.chdir(afile)
- os.system("python3 "+ TOOLS_INSTALL_SCRIPT)
+ os.system("python3 " + TOOLS_INSTALL_SCRIPT)
os.chdir("../")
except Exception as ex:
- print (str(ex))
+ print(str(ex))
def unpack_release_file(afile):
msg += "a directory."
else:
msg += "something else."
- print (msg)
+ print(msg)
tar.extractall()
tar.close()
zipf.extractall()
zipf.close()
+
def find_release_file(afile):
web_tct_pa = re.compile(WEB_TCT_PATTERN, re.I)
web_tct_match = web_tct_pa.match(afile)
tools_pa = re.compile(TOOLS_PATTERN, re.I)
tools_match = tools_pa.match(afile)
- if tools_match :
+ if tools_match:
return TOOLS_TYPE
return NORMAL_TYPE
+
def is_archvie_file(afile):
file_extension = get_file_extension(afile)
if file_extension == ".gz" or file_extension == ".zip":
return True
- else :
+ else:
return False
+
def get_file_extension(afile):
return os.path.splitext(afile)[1]
+
def remove_readonly(func, path, excinfo):
if (platform.system() != "Windows"):
os.chmod(path, stat.S_IWRITE)
func(path)
+
def remove_dir_tree(remove_dir):
try:
shutil.rmtree(remove_dir, ignore_errors=False, onerror=remove_readonly)
except Exception as e: ## if failed, report it back to the user ##
- print("[Delete Error] %s - %s." % (e.filename,e.strerror))
+ print("[Delete Error] %s - %s." % (e.filename, e.strerror))
+
+
+def remove_file(file):
+ try:
+ os.remove(file)
+ except Exception as e:
+ print("[Delete Error] %s - %s." % (e.filename, e.strerror))
+
def install_tct(upgrade=False):
current_path = os.getcwd()
filelist = os.listdir(current_path)
- for file in filelist :
+ for file in filelist:
file_type = find_release_file(file)
- if file_type is not NORMAL_TYPE :
+ if file_type is not NORMAL_TYPE:
if is_archvie_file(file) is True:
unpack_release_file(file)
filelist = os.listdir(current_path)
for file in filelist:
file_type = find_release_file(file)
- if file_type is not NORMAL_TYPE :
+ if file_type is not NORMAL_TYPE:
if is_archvie_file(file) is False:
install_release_file(file, file_type, upgrade)
+
if len(sys.argv) > 1:
- if(sys.argv[1]) == 'clean':
+ if (sys.argv[1]) == 'clean':
print("clean option is given")
remove_dir_tree("/opt/tct")
remove_dir_tree("/opt/tools")
remove_dir_tree("/opt/testkit")
- elif(sys.argv[1]) == 'upgrade':
+ remove_file("/usr/bin/tct-shell")
+ remove_file("/usr/bin/tct-mgr")
+ remove_file("/usr/bin/testkit-lite_native")
+ remove_file("/usr/bin/testkit-lite_web_csharp")
+ elif (sys.argv[1]) == 'upgrade':
print("upgrade option is given")
install_tct(True)
else:
-TCT 2.3 Release Notes
-
-1. Content overview
- +----doc
- |---- Web_TCT_2.3_Behavior_Test_Tool_User_Guide_v1.0.pdf
- |---- Web_TCT_2.3_Manager_User_Guide_v1.0.pdf
- |---- Web_TCT_2.3_Shell_User_Guide_v1.0.pdf
- |---- Web_TCT_2.3_TestSuite_Packaging_Guide_v1.0.pdf
- |---- Web_TCT_2.3_Tool_Packaging_Guide_v1.0.pdf
- |---- Web_TCT_2.3_Tool_Packaging_Ubuntu_Guide_v1.0.pdf
- |---- Web_TCT_2.3_User_Guide_v1.0.pdf
- |---- RELEASE_NOTES
- +----package
- +---- common
- +---- mobile
- +---- wearable
- +---- pkg_infos
- +----resource
- |---- getCap.wgt
- |---- tct-testconfig-2.3-1.zip
- |---- org.tizen.datacontrolprovider-1.0.0-arm.tpk
- |---- org.tizen.datacontrolprovider-1.0.0-i386.tpk
- +---- testkit-stub
- +---- tinyweb subdirectory
- +----tools
- |---- healthcheck.ini
- |---- full_pkg_generator
- |---- tct-config-device.py
- |---- tct-config-host.py
- |---- tct-shell
- |---- testkit-lite
- |---- tct-mgr
- +---- sdb
- +---- shell
- +---- testkitlite
- +---- manager
- +---- tct-manager related files
-
-2 Getting started
-
-2.1 TCT tools overview
-Tizen Compliance Tests (TCT) tools consist of these components:
-* Web TCT Manager: A java GUI tool that runs on the host machine, allowing users to create a test execution plan, trigger test execution, and view the test report.
-* Web TCT Shell: A lightweight console tool that runs on the host machine, allowing users to trigger TCT testing with an existing test plan, or a package list, or a test case ID.
-* Web TCT Behavior Test Tool: A device behavior checker developed using jQuery.
-
-2.2 Setting up the environment and installing the tools
-Follow instructions in doc/Web_TCT_2.3_User_Guide_v1.0.pdf to set up the environment of both the host and the device, and to install the tools.
-
-2.3 Using the tools
-Consult these documents below for detailed usage information:
-* doc/Web_TCT_Manager_2.3_User_Guide_v1.0.pdf
-* doc/Web_TCT_Shell_2.3_User_Guide_v1.0.pdf
-* doc/Web_TCT_Behavior_Test_Tool_2.3_User_Guide_v1.0.pdf
-
-3. Contacting us
-We're counting on your feedback to further improve our tools. In the meantime, we'll help you out if you encounter any problems. Please contact cathy.shen@intel.com if you'd like to get help, offer feedback, or contribute new ideas.
-
-4. Upcoming features and enhancements
-Upcoming features and enhancements include:
-* Manual test cases will be automated, as much as possible, to save execution effort.
-* TCT tools and cases will be modified according to TCS changes and feedback.
-* Manual case support for Web TCT Shell and the "--manual" command option are placeholders, currently.
-
+TCT 2.3 Release Notes\r
+\r
+1. Content overview\r
+ +----doc\r
+ |---- Web_TCT_2.3_Behavior_Test_Tool_User_Guide_v1.0.pdf\r
+ |---- Web_TCT_2.3_Manager_User_Guide_v1.0.pdf\r
+ |---- Web_TCT_2.3_Shell_User_Guide_v1.0.pdf\r
+ |---- Web_TCT_2.3_TestSuite_Packaging_Guide_v1.0.pdf\r
+ |---- Web_TCT_2.3_Tool_Packaging_Guide_v1.0.pdf\r
+ |---- Web_TCT_2.3_Tool_Packaging_Ubuntu_Guide_v1.0.pdf\r
+ |---- Web_TCT_2.3_User_Guide_v1.0.pdf\r
+ |---- RELEASE_NOTES\r
+ +----package\r
+ +---- common\r
+ +---- mobile\r
+ +---- wearable\r
+ +---- pkg_infos\r
+ +----resource\r
+ |---- getCap.wgt\r
+ |---- tct-testconfig-2.3-1.zip\r
+ |---- org.tizen.datacontrolprovider-1.0.0-arm.tpk\r
+ |---- org.tizen.datacontrolprovider-1.0.0-i386.tpk\r
+ +---- testkit-stub\r
+ +---- tinyweb subdirectory\r
+ +----tools\r
+ |---- healthcheck.ini\r
+ |---- full_pkg_generator\r
+ |---- tct-config-device.py\r
+ |---- tct-config-host.py\r
+ |---- tct-shell\r
+ |---- testkit-lite\r
+ |---- tct-mgr\r
+ +---- sdb\r
+ +---- shell\r
+ +---- testkitlite\r
+ +---- manager\r
+ +---- tct-manager related files\r
+\r
+2 Getting started\r
+\r
+2.1 TCT tools overview\r
+Tizen Compliance Tests (TCT) tools consist of these components:\r
+* Web TCT Manager: A java GUI tool that runs on the host machine, allowing users to create a test execution plan, trigger test execution, and view the test report.\r
+* Web TCT Shell: A lightweight console tool that runs on the host machine, allowing users to trigger TCT testing with an existing test plan, or a package list, or a test case ID.\r
+* Web TCT Behavior Test Tool: A device behavior checker developed using jQuery.\r
+\r
+2.2 Setting up the environment and installing the tools\r
+Follow instructions in doc/Web_TCT_2.3_User_Guide_v1.0.pdf to set up the environment of both the host and the device, and to install the tools.\r
+\r
+2.3 Using the tools\r
+Consult these documents below for detailed usage information:\r
+* doc/Web_TCT_Manager_2.3_User_Guide_v1.0.pdf\r
+* doc/Web_TCT_Shell_2.3_User_Guide_v1.0.pdf\r
+* doc/Web_TCT_Behavior_Test_Tool_2.3_User_Guide_v1.0.pdf\r
+\r
+3. Contacting us\r
+We're counting on your feedback to further improve our tools. In the meantime, we'll help you out if you encounter any problems. Please contact cathy.shen@intel.com if you'd like to get help, offer feedback, or contribute new ideas.\r
+\r
+4. Upcoming features and enhancements\r
+Upcoming features and enhancements include:\r
+* Manual test cases will be automated, as much as possible, to save execution effort.\r
+* TCT tools and cases will be modified according to TCS changes and feedback.\r
+* Manual case support for Web TCT Shell and the "--manual" command option are placeholders, currently.\r
+\r
-TIZENV=tizen_web_6.0,tizen_native_6.0,tizen_csharp_6.0,tizen_web_6.5,tizen_native_6.5,tizen_csharp_6.5,tizen_web_7.0,tizen_native_7.0,tizen_csharp_7.0,tizen_web_7.5,tizen_native_7.5,tizen_csharp_7.5
+TIZENV=tizen_web_6.0,tizen_native_6.0,tizen_csharp_6.0,tizen_web_6.5,tizen_native_6.5,tizen_csharp_6.5,tizen_web_7.0,tizen_native_7.0,tizen_csharp_7.0,tizen_web_7.5,tizen_native_7.5,tizen_csharp_7.5,tizen_web_8.0,tizen_native_8.0,tizen_csharp_8.0
PROFILE=mobile,wearable,tv,tizeniot
+PROFILE_tizen_web_8.0=headed,tv
+PROFILE_tizen_native_8.0=headed,tv
+PROFILE_tizen_csharp_8.0=headed,tv
+PROFILE_tizen_web_7.5=headed,tv
+PROFILE_tizen_native_7.5=headed,tv
+PROFILE_tizen_csharp_7.5=headed,tv
+PROFILE_tizen_web_7.0=mobile,wearable,tv,tizeniot
+PROFILE_tizen_native_7.0=mobile,wearable,tv,tizeniot
+PROFILE_tizen_csharp_7.0=mobile,wearable,tv,tizeniot
+PROFILE_tizen_web_6.5=mobile,wearable,tv,tizeniot
+PROFILE_tizen_native_6.5=mobile,wearable,tv,tizeniot
+PROFILE_tizen_csharp_6.5=mobile,wearable,tv,tizeniot
+PROFILE_tizen_web_6.0=mobile,wearable,tv,tizeniot
+PROFILE_tizen_native_6.0=mobile,wearable,tv,tizeniot
+PROFILE_tizen_csharp_6.0=mobile,wearable,tv,tizeniot
--- /dev/null
+<xsl:stylesheet version="1.0"
+xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
+ <xsl:param name="PKG_INFO" />
+ <xsl:param name="USER_IN" />
+ <xsl:param name="BB" />
+ <xsl:param name="prof" />
+ <xsl:param name="updates" select="document($PKG_INFO)" />
+ <xsl:param name="bb" select="document($BB)" />
+ <xsl:param name="userin" select="document($USER_IN)" />
+<xsl:key name="mod_name" match="suite" use="@name"/>
+
+<xsl:template match="/">
+ <ns3:testplan xmlns:ns3="http://www.example.org/plan/" xmlns="" profile="{$prof}">
+ <xsl:for-each select = "$userin/MappingInfo/bb_info">
+ <xsl:variable name="userCategory" select="@name" />
+ <xsl:for-each select = "$bb/MappingInfo/bb_info/tct_info">
+ <xsl:variable name="tct_name" select="." />
+ <xsl:variable name="category" select="../@name" />
+ <xsl:if test="normalize-space($userCategory)=normalize-space($category)">
+ <xsl:for-each select = "$updates/ns3:testplan/suite">
+ <xsl:variable name="comp" select="@name" />
+ <xsl:variable name="auto_tcn" select="auto_tcn" />
+ <xsl:variable name="manual_tcn" select="manual_tcn" />
+ <xsl:variable name="total_tcn" select="total_tcn" />
+ <xsl:variable name="pkg_name" select="pkg_name" />
+ <xsl:if test="normalize-space($comp)=normalize-space($tct_name)">
+ <suite name="{$tct_name}" category="{$category}">
+ <auto_tcn><xsl:value-of select="$auto_tcn"/></auto_tcn>
+ <manual_tcn><xsl:value-of select="$manual_tcn"/></manual_tcn>
+ <total_tcn><xsl:value-of select="$total_tcn"/></total_tcn>
+ <pkg_name><xsl:value-of select="$pkg_name"/></pkg_name>
+ </suite>
+ </xsl:if>
+ </xsl:for-each>
+ </xsl:if>
+ </xsl:for-each>
+ </xsl:for-each>
+ </ns3:testplan>
+</xsl:template>
+
+</xsl:stylesheet>
\ No newline at end of file
--- /dev/null
+<xsl:stylesheet version="1.0"
+xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
+<xsl:param name="plan_name" />
+<xsl:param name="prof" />
+<xsl:template match="/">
+<ns3:testplan xmlns="" xmlns:ns3="http://www.example.org/plan/" name="{$plan_name}" profile="{$prof}">
+ <execute_type>All</execute_type>
+ <xsl:for-each select = "/ns3:testplan">
+ <xsl:copy-of select="suite"/>
+ </xsl:for-each>
+</ns3:testplan>
+</xsl:template>
+</xsl:stylesheet>
\ No newline at end of file
-<?xml version="1.0" encoding="UTF-8"?>
-<ns3:testplan xmlns:ns3="http://www.example.org/plan/" xmlns="" name="Full_mobile" profile="mobile">
- <execute_type>All</execute_type>
- <suite name="tct-webdatabase-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>247</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>247</total_tcn>
- <pkg_name>mobile/tct-webdatabase-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-jsenhance-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>49</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>49</total_tcn>
- <pkg_name>common/tct-jsenhance-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-multicolumn-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>141</auto_tcn>
- <manual_tcn>18</manual_tcn>
- <total_tcn>159</total_tcn>
- <pkg_name>mobile/tct-multicolumn-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messaging-mms-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>123</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>123</total_tcn>
- <pkg_name>mobile/tct-messaging-mms-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-workers-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>85</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>86</total_tcn>
- <pkg_name>mobile/tct-workers-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-transitions-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>26</auto_tcn>
- <manual_tcn>5</manual_tcn>
- <total_tcn>31</total_tcn>
- <pkg_name>common/tct-transitions-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-namespace-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>23</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>common/tct-namespace-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messaging-email-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>308</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>309</total_tcn>
- <pkg_name>mobile/tct-messaging-email-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-2dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>34</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>34</total_tcn>
- <pkg_name>common/tct-2dtransforms-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-time-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>470</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>470</total_tcn>
- <pkg_name>mobile/tct-time-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-forms-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>151</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>151</total_tcn>
- <pkg_name>mobile/tct-forms-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-capability-tests" launcher="WRTLauncher" category="Compliance">
- <auto_tcn>15</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>15</total_tcn>
- <pkg_name>common/tct-capability-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fileapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>98</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>101</total_tcn>
- <pkg_name>mobile/tct-fileapi-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediacapture-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>7</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>7</total_tcn>
- <pkg_name>common/tct-mediacapture-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ext01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>mobile/tct-ext01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-exif-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>64</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>64</total_tcn>
- <pkg_name>common/tct-exif-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-csp-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>133</auto_tcn>
- <manual_tcn>78</manual_tcn>
- <total_tcn>211</total_tcn>
- <pkg_name>mobile/tct-csp-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-privilege-wrt-tests" category="Web Runtime">
- <auto_tcn>155</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>155</total_tcn>
- <pkg_name>mobile/tct-privilege-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediakey-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>15</total_tcn>
- <pkg_name>mobile/tct-mediakey-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-deviceorientation-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>37</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>37</total_tcn>
- <pkg_name>mobile/tct-deviceorientation-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webmessaging-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>176</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>176</total_tcn>
- <pkg_name>mobile/tct-webmessaging-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-package-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>54</auto_tcn>
- <manual_tcn>12</manual_tcn>
- <total_tcn>66</total_tcn>
- <pkg_name>common/tct-package-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-notification-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>93</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>94</total_tcn>
- <pkg_name>mobile/tct-notification-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fmradio-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>67</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>74</total_tcn>
- <pkg_name>mobile/tct-fmradio-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-rt01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>12</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>12</total_tcn>
- <pkg_name>common/tct-rt01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-appcache-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>36</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>36</total_tcn>
- <pkg_name>mobile/tct-appcache-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-filesystemapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>208</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>208</total_tcn>
- <pkg_name>mobile/tct-filesystemapi-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-svg-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>9</manual_tcn>
- <total_tcn>12</total_tcn>
- <pkg_name>common/tct-svg-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-websocket-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>270</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>270</total_tcn>
- <pkg_name>mobile/tct-websocket-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-flexiblebox-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>25</auto_tcn>
- <manual_tcn>28</manual_tcn>
- <total_tcn>53</total_tcn>
- <pkg_name>common/tct-flexiblebox-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-dnd-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>6</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>6</total_tcn>
- <pkg_name>mobile/tct-dnd-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-extra-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>548</auto_tcn>
- <manual_tcn>25</manual_tcn>
- <total_tcn>573</total_tcn>
- <pkg_name>mobile/tct-extra-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fullscreen-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>16</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>16</total_tcn>
- <pkg_name>mobile/tct-fullscreen-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-colors-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>46</auto_tcn>
- <manual_tcn>29</manual_tcn>
- <total_tcn>75</total_tcn>
- <pkg_name>common/tct-colors-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-indexeddb-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>400</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>400</total_tcn>
- <pkg_name>mobile/tct-indexeddb-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sandbox-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>72</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>73</total_tcn>
- <pkg_name>common/tct-sandbox-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-networkbearerselection-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>25</total_tcn>
- <pkg_name>mobile/tct-networkbearerselection-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-push-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>41</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>41</total_tcn>
- <pkg_name>common/tct-push-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messageport-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>48</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>48</total_tcn>
- <pkg_name>mobile/tct-messageport-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-browserstate-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>mobile/tct-browserstate-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-cors-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>10</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>10</total_tcn>
- <pkg_name>common/tct-cors-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-xmlhttprequest-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>262</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>262</total_tcn>
- <pkg_name>mobile/tct-xmlhttprequest-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-navigationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>45</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>45</total_tcn>
- <pkg_name>mobile/tct-navigationtiming-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-typedarrays-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>80</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>80</total_tcn>
- <pkg_name>common/tct-typedarrays-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-animations-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>24</total_tcn>
- <pkg_name>common/tct-animations-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-badge-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>26</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>26</total_tcn>
- <pkg_name>mobile/tct-badge-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-nfc-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>195</auto_tcn>
- <manual_tcn>35</manual_tcn>
- <total_tcn>230</total_tcn>
- <pkg_name>mobile/tct-nfc-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-pagevisibility-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>18</auto_tcn>
- <manual_tcn>2</manual_tcn>
- <total_tcn>20</total_tcn>
- <pkg_name>mobile/tct-pagevisibility-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-contact-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>441</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>441</total_tcn>
- <pkg_name>mobile/tct-contact-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-content-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>245</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>245</total_tcn>
- <pkg_name>common/tct-content-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-gumallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>6</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>6</total_tcn>
- <pkg_name>common/tct-gumallow-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-notification-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>14</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>17</total_tcn>
- <pkg_name>mobile/tct-notification-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sp01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>4</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>4</total_tcn>
- <pkg_name>common/tct-sp01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widget02-w3c-tests" category="W3C/HTML5 APIs">
- <auto_tcn>68</auto_tcn>
- <manual_tcn>82</manual_tcn>
- <total_tcn>150</total_tcn>
- <pkg_name>mobile/tct-widget02-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-websetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>22</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>22</total_tcn>
- <pkg_name>mobile/tct-websetting-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-audio-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>333</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>334</total_tcn>
- <pkg_name>mobile/tct-audio-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-screenorientation-w3c-tests" launcher="xwalk" category="W3C/HTML5 APIs">
- <auto_tcn>17</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>17</total_tcn>
- <pkg_name>mobile/tct-screenorientation-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-rt02-wrt-tests" category="Web Runtime">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-rt02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sp02-wrt-tests" category="Web Runtime">
- <auto_tcn>1</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>1</total_tcn>
- <pkg_name>common/tct-sp02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sound-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>52</auto_tcn>
- <manual_tcn>8</manual_tcn>
- <total_tcn>60</total_tcn>
- <pkg_name>mobile/tct-sound-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ext02-wrt-tests" category="Web Runtime">
- <auto_tcn>8</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>8</total_tcn>
- <pkg_name>common/tct-ext02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-application-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>184</auto_tcn>
- <manual_tcn>8</manual_tcn>
- <total_tcn>192</total_tcn>
- <pkg_name>mobile/tct-application-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-bluetooth-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>257</auto_tcn>
- <manual_tcn>142</manual_tcn>
- <total_tcn>399</total_tcn>
- <pkg_name>mobile/tct-bluetooth-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-humanactivitymonitor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>61</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>61</total_tcn>
- <pkg_name>mobile/tct-humanactivitymonitor-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fonts-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>131</manual_tcn>
- <total_tcn>142</total_tcn>
- <pkg_name>common/tct-fonts-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-speech-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>40</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>41</total_tcn>
- <pkg_name>common/tct-speech-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-security-tcs-tests" launcher="WRTLauncher" category="Compliance">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-security-tcs-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ui01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>30</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>30</total_tcn>
- <pkg_name>mobile/tct-ui01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-animationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>18</total_tcn>
- <pkg_name>common/tct-animationtiming-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-selectorslevel2-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>30</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>30</total_tcn>
- <pkg_name>common/tct-selectorslevel2-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-wgtapi01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">
- <auto_tcn>107</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>107</total_tcn>
- <pkg_name>common/tct-wgtapi01-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-inputdevice-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>19</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>20</total_tcn>
- <pkg_name>mobile/tct-inputdevice-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webaudio-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>422</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>422</total_tcn>
- <pkg_name>mobile/tct-webaudio-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-filewriterapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>106</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>106</total_tcn>
- <pkg_name>mobile/tct-filewriterapi-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sensor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>119</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>119</total_tcn>
- <pkg_name>mobile/tct-sensor-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-secureelement-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>71</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>71</total_tcn>
- <pkg_name>mobile/tct-secureelement-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-power-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>50</auto_tcn>
- <manual_tcn>6</manual_tcn>
- <total_tcn>56</total_tcn>
- <pkg_name>mobile/tct-power-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-appwgt-wrt-tests" category="Web Runtime">
- <auto_tcn>7</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>7</total_tcn>
- <pkg_name>common/tct-appwgt-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-privilege-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>65</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>65</total_tcn>
- <pkg_name>common/tct-privilege-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-alarm-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>61</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>61</total_tcn>
- <pkg_name>common/tct-alarm-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-touchevent-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>16</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>mobile/tct-touchevent-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-wgtapi02-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>34</manual_tcn>
- <total_tcn>34</total_tcn>
- <pkg_name>common/tct-wgtapi02-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-archive-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>106</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>106</total_tcn>
- <pkg_name>common/tct-archive-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-account-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>89</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>89</total_tcn>
- <pkg_name>mobile/tct-account-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-tizen-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>81</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>81</total_tcn>
- <pkg_name>common/tct-tizen-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widget01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">
- <auto_tcn>155</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>155</total_tcn>
- <pkg_name>mobile/tct-widget01-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-bookmark-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>36</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>36</total_tcn>
- <pkg_name>mobile/tct-bookmark-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-3dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>32</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>32</total_tcn>
- <pkg_name>common/tct-3dtransforms-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-geoallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>208</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>211</total_tcn>
- <pkg_name>mobile/tct-geoallow-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-calendar-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>354</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>354</total_tcn>
- <pkg_name>mobile/tct-calendar-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sessionhistory-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>148</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>149</total_tcn>
- <pkg_name>common/tct-sessionhistory-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-datacontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>113</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>113</total_tcn>
- <pkg_name>mobile/tct-datacontrol-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-appcontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>5</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>5</total_tcn>
- <pkg_name>mobile/tct-appcontrol-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-callhistory-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>80</auto_tcn>
- <manual_tcn>27</manual_tcn>
- <total_tcn>107</total_tcn>
- <pkg_name>mobile/tct-callhistory-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-geodeny-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>mobile/tct-geodeny-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-canvas-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>846</auto_tcn>
- <manual_tcn>18</manual_tcn>
- <total_tcn>864</total_tcn>
- <pkg_name>common/tct-canvas-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ui-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>43</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>44</total_tcn>
- <pkg_name>common/tct-ui-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-testconfig" launcher="WRTLauncher">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>20</manual_tcn>
- <total_tcn>20</total_tcn>
- <pkg_name>common/tct-testconfig-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-selectorslevel1-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>78</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>78</total_tcn>
- <pkg_name>common/tct-selectorslevel1-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sse-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>68</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>68</total_tcn>
- <pkg_name>mobile/tct-sse-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widgetpolicy-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>33</manual_tcn>
- <total_tcn>33</total_tcn>
- <pkg_name>common/tct-widgetpolicy-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-batterystatus-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>23</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>mobile/tct-batterystatus-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediacontroller-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>162</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>165</total_tcn>
- <pkg_name>mobile/tct-mediacontroller-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests03" category="Web UI Framework">
- <auto_tcn>179</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>179</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests03-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-maxLength-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>14</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>14</total_tcn>
- <pkg_name>common/tct-maxLength-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests04" category="Web UI Framework">
- <auto_tcn>375</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>375</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests04-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-systeminfo-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>304</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>304</total_tcn>
- <pkg_name>mobile/tct-systeminfo-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests05" category="Web UI Framework">
- <auto_tcn>322</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>322</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests05-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-filesystem-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>289</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>292</total_tcn>
- <pkg_name>mobile/tct-filesystem-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests06" category="Web UI Framework">
- <auto_tcn>98</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>98</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests06-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests01" category="Web UI Framework">
- <auto_tcn>355</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>355</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests01-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests02" category="Web UI Framework">
- <auto_tcn>455</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>455</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests02-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-vibration-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>2</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>2</total_tcn>
- <pkg_name>mobile/tct-vibration-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messaging-sms-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>184</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>184</total_tcn>
- <pkg_name>mobile/tct-messaging-sms-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-text-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>27</auto_tcn>
- <manual_tcn>15</manual_tcn>
- <total_tcn>42</total_tcn>
- <pkg_name>common/tct-text-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-stab-wrt-tests" category="Web Runtime">
- <auto_tcn>1</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>1</total_tcn>
- <pkg_name>common/tct-stab-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webstorage-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>177</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>181</total_tcn>
- <pkg_name>common/tct-webstorage-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-behavior-tests">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>30</manual_tcn>
- <total_tcn>30</total_tcn>
- <pkg_name>mobile/tct-behavior-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-download-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>62</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>62</total_tcn>
- <pkg_name>common/tct-download-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediaqueries-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>49</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>49</total_tcn>
- <pkg_name>mobile/tct-mediaqueries-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-systemsetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>33</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>33</total_tcn>
- <pkg_name>mobile/tct-systemsetting-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-backgrounds-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>541</auto_tcn>
- <manual_tcn>74</manual_tcn>
- <total_tcn>615</total_tcn>
- <pkg_name>mobile/tct-backgrounds-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-video-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>361</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>365</total_tcn>
- <pkg_name>mobile/tct-video-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-pm-wrt-tests" category="Web Runtime">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>24</total_tcn>
- <pkg_name>common/tct-pm-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webgl-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>889</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>889</total_tcn>
- <pkg_name>common/tct-webgl-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
-</ns3:testplan>
-
+<?xml version="1.0" encoding="UTF-8"?>\r
+<ns3:testplan xmlns:ns3="http://www.example.org/plan/" xmlns="" name="Full_mobile" profile="mobile">\r
+ <execute_type>All</execute_type>\r
+ <suite name="tct-webdatabase-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>247</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>247</total_tcn>\r
+ <pkg_name>mobile/tct-webdatabase-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-jsenhance-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>49</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>49</total_tcn>\r
+ <pkg_name>common/tct-jsenhance-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-multicolumn-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>141</auto_tcn>\r
+ <manual_tcn>18</manual_tcn>\r
+ <total_tcn>159</total_tcn>\r
+ <pkg_name>mobile/tct-multicolumn-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messaging-mms-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>123</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>123</total_tcn>\r
+ <pkg_name>mobile/tct-messaging-mms-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-workers-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>85</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>86</total_tcn>\r
+ <pkg_name>mobile/tct-workers-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-transitions-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>26</auto_tcn>\r
+ <manual_tcn>5</manual_tcn>\r
+ <total_tcn>31</total_tcn>\r
+ <pkg_name>common/tct-transitions-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-namespace-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>23</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>common/tct-namespace-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messaging-email-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>308</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>309</total_tcn>\r
+ <pkg_name>mobile/tct-messaging-email-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-2dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>34</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>34</total_tcn>\r
+ <pkg_name>common/tct-2dtransforms-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-time-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>470</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>470</total_tcn>\r
+ <pkg_name>mobile/tct-time-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-forms-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>151</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>151</total_tcn>\r
+ <pkg_name>mobile/tct-forms-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-capability-tests" launcher="WRTLauncher" category="Compliance">\r
+ <auto_tcn>15</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>15</total_tcn>\r
+ <pkg_name>common/tct-capability-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fileapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>98</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>101</total_tcn>\r
+ <pkg_name>mobile/tct-fileapi-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediacapture-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>7</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>7</total_tcn>\r
+ <pkg_name>common/tct-mediacapture-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ext01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>mobile/tct-ext01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-exif-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>64</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>64</total_tcn>\r
+ <pkg_name>common/tct-exif-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-csp-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>133</auto_tcn>\r
+ <manual_tcn>78</manual_tcn>\r
+ <total_tcn>211</total_tcn>\r
+ <pkg_name>mobile/tct-csp-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-privilege-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>155</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>155</total_tcn>\r
+ <pkg_name>mobile/tct-privilege-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediakey-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>15</total_tcn>\r
+ <pkg_name>mobile/tct-mediakey-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-deviceorientation-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>37</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>37</total_tcn>\r
+ <pkg_name>mobile/tct-deviceorientation-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webmessaging-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>176</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>176</total_tcn>\r
+ <pkg_name>mobile/tct-webmessaging-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-package-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>54</auto_tcn>\r
+ <manual_tcn>12</manual_tcn>\r
+ <total_tcn>66</total_tcn>\r
+ <pkg_name>common/tct-package-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-notification-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>93</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>94</total_tcn>\r
+ <pkg_name>mobile/tct-notification-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fmradio-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>67</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>74</total_tcn>\r
+ <pkg_name>mobile/tct-fmradio-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-rt01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>12</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>12</total_tcn>\r
+ <pkg_name>common/tct-rt01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-appcache-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>36</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>36</total_tcn>\r
+ <pkg_name>mobile/tct-appcache-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-filesystemapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>208</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>208</total_tcn>\r
+ <pkg_name>mobile/tct-filesystemapi-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-svg-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>9</manual_tcn>\r
+ <total_tcn>12</total_tcn>\r
+ <pkg_name>common/tct-svg-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-websocket-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>270</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>270</total_tcn>\r
+ <pkg_name>mobile/tct-websocket-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-flexiblebox-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>25</auto_tcn>\r
+ <manual_tcn>28</manual_tcn>\r
+ <total_tcn>53</total_tcn>\r
+ <pkg_name>common/tct-flexiblebox-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-dnd-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>6</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>6</total_tcn>\r
+ <pkg_name>mobile/tct-dnd-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-extra-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>548</auto_tcn>\r
+ <manual_tcn>25</manual_tcn>\r
+ <total_tcn>573</total_tcn>\r
+ <pkg_name>mobile/tct-extra-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fullscreen-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>16</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>16</total_tcn>\r
+ <pkg_name>mobile/tct-fullscreen-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-colors-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>46</auto_tcn>\r
+ <manual_tcn>29</manual_tcn>\r
+ <total_tcn>75</total_tcn>\r
+ <pkg_name>common/tct-colors-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-indexeddb-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>400</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>400</total_tcn>\r
+ <pkg_name>mobile/tct-indexeddb-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sandbox-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>72</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>73</total_tcn>\r
+ <pkg_name>common/tct-sandbox-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-networkbearerselection-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>25</total_tcn>\r
+ <pkg_name>mobile/tct-networkbearerselection-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-push-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>41</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>41</total_tcn>\r
+ <pkg_name>common/tct-push-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messageport-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>48</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>48</total_tcn>\r
+ <pkg_name>mobile/tct-messageport-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-browserstate-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>mobile/tct-browserstate-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-cors-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>10</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>10</total_tcn>\r
+ <pkg_name>common/tct-cors-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-xmlhttprequest-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>262</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>262</total_tcn>\r
+ <pkg_name>mobile/tct-xmlhttprequest-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-navigationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>45</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>45</total_tcn>\r
+ <pkg_name>mobile/tct-navigationtiming-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-typedarrays-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>80</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>80</total_tcn>\r
+ <pkg_name>common/tct-typedarrays-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-animations-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>24</total_tcn>\r
+ <pkg_name>common/tct-animations-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-badge-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>26</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>26</total_tcn>\r
+ <pkg_name>mobile/tct-badge-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-nfc-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>195</auto_tcn>\r
+ <manual_tcn>35</manual_tcn>\r
+ <total_tcn>230</total_tcn>\r
+ <pkg_name>mobile/tct-nfc-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-pagevisibility-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>18</auto_tcn>\r
+ <manual_tcn>2</manual_tcn>\r
+ <total_tcn>20</total_tcn>\r
+ <pkg_name>mobile/tct-pagevisibility-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-contact-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>441</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>441</total_tcn>\r
+ <pkg_name>mobile/tct-contact-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-content-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>245</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>245</total_tcn>\r
+ <pkg_name>common/tct-content-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-gumallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>6</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>6</total_tcn>\r
+ <pkg_name>common/tct-gumallow-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-notification-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>14</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>17</total_tcn>\r
+ <pkg_name>mobile/tct-notification-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sp01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>4</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>4</total_tcn>\r
+ <pkg_name>common/tct-sp01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widget02-w3c-tests" category="W3C/HTML5 APIs">\r
+ <auto_tcn>68</auto_tcn>\r
+ <manual_tcn>82</manual_tcn>\r
+ <total_tcn>150</total_tcn>\r
+ <pkg_name>mobile/tct-widget02-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-websetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>22</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>22</total_tcn>\r
+ <pkg_name>mobile/tct-websetting-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-audio-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>333</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>334</total_tcn>\r
+ <pkg_name>mobile/tct-audio-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-screenorientation-w3c-tests" launcher="xwalk" category="W3C/HTML5 APIs">\r
+ <auto_tcn>17</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>17</total_tcn>\r
+ <pkg_name>mobile/tct-screenorientation-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-rt02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-rt02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sp02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>1</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>1</total_tcn>\r
+ <pkg_name>common/tct-sp02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sound-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>52</auto_tcn>\r
+ <manual_tcn>8</manual_tcn>\r
+ <total_tcn>60</total_tcn>\r
+ <pkg_name>mobile/tct-sound-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ext02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>8</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>8</total_tcn>\r
+ <pkg_name>common/tct-ext02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-application-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>184</auto_tcn>\r
+ <manual_tcn>8</manual_tcn>\r
+ <total_tcn>192</total_tcn>\r
+ <pkg_name>mobile/tct-application-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-bluetooth-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>257</auto_tcn>\r
+ <manual_tcn>142</manual_tcn>\r
+ <total_tcn>399</total_tcn>\r
+ <pkg_name>mobile/tct-bluetooth-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-humanactivitymonitor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>61</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>61</total_tcn>\r
+ <pkg_name>mobile/tct-humanactivitymonitor-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fonts-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>131</manual_tcn>\r
+ <total_tcn>142</total_tcn>\r
+ <pkg_name>common/tct-fonts-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-speech-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>40</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>41</total_tcn>\r
+ <pkg_name>common/tct-speech-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-security-tcs-tests" launcher="WRTLauncher" category="Compliance">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-security-tcs-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ui01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>30</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>30</total_tcn>\r
+ <pkg_name>mobile/tct-ui01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-animationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>18</total_tcn>\r
+ <pkg_name>common/tct-animationtiming-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-selectorslevel2-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>30</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>30</total_tcn>\r
+ <pkg_name>common/tct-selectorslevel2-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-wgtapi01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">\r
+ <auto_tcn>107</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>107</total_tcn>\r
+ <pkg_name>common/tct-wgtapi01-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-inputdevice-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>19</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>20</total_tcn>\r
+ <pkg_name>mobile/tct-inputdevice-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webaudio-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>422</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>422</total_tcn>\r
+ <pkg_name>mobile/tct-webaudio-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-filewriterapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>106</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>106</total_tcn>\r
+ <pkg_name>mobile/tct-filewriterapi-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sensor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>119</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>119</total_tcn>\r
+ <pkg_name>mobile/tct-sensor-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-secureelement-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>71</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>71</total_tcn>\r
+ <pkg_name>mobile/tct-secureelement-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-power-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>50</auto_tcn>\r
+ <manual_tcn>6</manual_tcn>\r
+ <total_tcn>56</total_tcn>\r
+ <pkg_name>mobile/tct-power-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-appwgt-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>7</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>7</total_tcn>\r
+ <pkg_name>common/tct-appwgt-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-privilege-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>65</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>65</total_tcn>\r
+ <pkg_name>common/tct-privilege-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-alarm-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>61</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>61</total_tcn>\r
+ <pkg_name>common/tct-alarm-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-touchevent-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>16</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>mobile/tct-touchevent-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-wgtapi02-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>34</manual_tcn>\r
+ <total_tcn>34</total_tcn>\r
+ <pkg_name>common/tct-wgtapi02-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-archive-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>106</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>106</total_tcn>\r
+ <pkg_name>common/tct-archive-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-account-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>89</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>89</total_tcn>\r
+ <pkg_name>mobile/tct-account-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-tizen-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>81</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>81</total_tcn>\r
+ <pkg_name>common/tct-tizen-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widget01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">\r
+ <auto_tcn>155</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>155</total_tcn>\r
+ <pkg_name>mobile/tct-widget01-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-bookmark-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>36</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>36</total_tcn>\r
+ <pkg_name>mobile/tct-bookmark-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-3dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>32</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>32</total_tcn>\r
+ <pkg_name>common/tct-3dtransforms-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-geoallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>208</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>211</total_tcn>\r
+ <pkg_name>mobile/tct-geoallow-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-calendar-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>354</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>354</total_tcn>\r
+ <pkg_name>mobile/tct-calendar-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sessionhistory-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>148</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>149</total_tcn>\r
+ <pkg_name>common/tct-sessionhistory-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-datacontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>113</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>113</total_tcn>\r
+ <pkg_name>mobile/tct-datacontrol-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-appcontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>5</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>5</total_tcn>\r
+ <pkg_name>mobile/tct-appcontrol-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-callhistory-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>80</auto_tcn>\r
+ <manual_tcn>27</manual_tcn>\r
+ <total_tcn>107</total_tcn>\r
+ <pkg_name>mobile/tct-callhistory-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-geodeny-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>mobile/tct-geodeny-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-canvas-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>846</auto_tcn>\r
+ <manual_tcn>18</manual_tcn>\r
+ <total_tcn>864</total_tcn>\r
+ <pkg_name>common/tct-canvas-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ui-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>43</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>44</total_tcn>\r
+ <pkg_name>common/tct-ui-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-testconfig" launcher="WRTLauncher">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>20</manual_tcn>\r
+ <total_tcn>20</total_tcn>\r
+ <pkg_name>common/tct-testconfig-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-selectorslevel1-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>78</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>78</total_tcn>\r
+ <pkg_name>common/tct-selectorslevel1-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sse-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>68</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>68</total_tcn>\r
+ <pkg_name>mobile/tct-sse-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widgetpolicy-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>33</manual_tcn>\r
+ <total_tcn>33</total_tcn>\r
+ <pkg_name>common/tct-widgetpolicy-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-batterystatus-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>23</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>mobile/tct-batterystatus-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediacontroller-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>162</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>165</total_tcn>\r
+ <pkg_name>mobile/tct-mediacontroller-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests03" category="Web UI Framework">\r
+ <auto_tcn>179</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>179</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests03-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-maxLength-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>14</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>14</total_tcn>\r
+ <pkg_name>common/tct-maxLength-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests04" category="Web UI Framework">\r
+ <auto_tcn>375</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>375</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests04-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-systeminfo-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>304</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>304</total_tcn>\r
+ <pkg_name>mobile/tct-systeminfo-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests05" category="Web UI Framework">\r
+ <auto_tcn>322</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>322</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests05-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-filesystem-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>289</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>292</total_tcn>\r
+ <pkg_name>mobile/tct-filesystem-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests06" category="Web UI Framework">\r
+ <auto_tcn>98</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>98</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests06-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests01" category="Web UI Framework">\r
+ <auto_tcn>355</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>355</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests01-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests02" category="Web UI Framework">\r
+ <auto_tcn>455</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>455</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests02-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-vibration-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>2</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>2</total_tcn>\r
+ <pkg_name>mobile/tct-vibration-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messaging-sms-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>184</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>184</total_tcn>\r
+ <pkg_name>mobile/tct-messaging-sms-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-text-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>27</auto_tcn>\r
+ <manual_tcn>15</manual_tcn>\r
+ <total_tcn>42</total_tcn>\r
+ <pkg_name>common/tct-text-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-stab-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>1</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>1</total_tcn>\r
+ <pkg_name>common/tct-stab-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webstorage-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>177</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>181</total_tcn>\r
+ <pkg_name>common/tct-webstorage-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-behavior-tests">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>30</manual_tcn>\r
+ <total_tcn>30</total_tcn>\r
+ <pkg_name>mobile/tct-behavior-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-download-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>62</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>62</total_tcn>\r
+ <pkg_name>common/tct-download-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediaqueries-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>49</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>49</total_tcn>\r
+ <pkg_name>mobile/tct-mediaqueries-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-systemsetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>33</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>33</total_tcn>\r
+ <pkg_name>mobile/tct-systemsetting-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-backgrounds-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>541</auto_tcn>\r
+ <manual_tcn>74</manual_tcn>\r
+ <total_tcn>615</total_tcn>\r
+ <pkg_name>mobile/tct-backgrounds-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-video-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>361</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>365</total_tcn>\r
+ <pkg_name>mobile/tct-video-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-pm-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>24</total_tcn>\r
+ <pkg_name>common/tct-pm-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webgl-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>889</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>889</total_tcn>\r
+ <pkg_name>common/tct-webgl-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+</ns3:testplan>\r
+\r
-<?xml version="1.0" encoding="UTF-8"?>
-<ns3:testplan xmlns:ns3="http://www.example.org/plan/" xmlns="" name="Full_mobile" profile="mobile">
- <execute_type>All</execute_type>
- <suite name="tct-webdatabase-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>247</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>247</total_tcn>
- <pkg_name>mobile/tct-webdatabase-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-jsenhance-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>49</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>49</total_tcn>
- <pkg_name>common/tct-jsenhance-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-multicolumn-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>141</auto_tcn>
- <manual_tcn>18</manual_tcn>
- <total_tcn>159</total_tcn>
- <pkg_name>mobile/tct-multicolumn-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messaging-mms-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>123</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>123</total_tcn>
- <pkg_name>mobile/tct-messaging-mms-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-workers-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>85</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>86</total_tcn>
- <pkg_name>mobile/tct-workers-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-transitions-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>26</auto_tcn>
- <manual_tcn>5</manual_tcn>
- <total_tcn>31</total_tcn>
- <pkg_name>common/tct-transitions-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-namespace-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>23</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>common/tct-namespace-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messaging-email-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>308</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>309</total_tcn>
- <pkg_name>mobile/tct-messaging-email-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-2dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>34</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>34</total_tcn>
- <pkg_name>common/tct-2dtransforms-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-time-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>470</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>470</total_tcn>
- <pkg_name>mobile/tct-time-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-forms-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>151</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>151</total_tcn>
- <pkg_name>mobile/tct-forms-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-capability-tests" launcher="WRTLauncher" category="Compliance">
- <auto_tcn>15</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>15</total_tcn>
- <pkg_name>common/tct-capability-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fileapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>98</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>101</total_tcn>
- <pkg_name>mobile/tct-fileapi-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediacapture-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>7</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>7</total_tcn>
- <pkg_name>common/tct-mediacapture-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ext01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>mobile/tct-ext01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-exif-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>64</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>64</total_tcn>
- <pkg_name>common/tct-exif-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-csp-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>133</auto_tcn>
- <manual_tcn>78</manual_tcn>
- <total_tcn>211</total_tcn>
- <pkg_name>mobile/tct-csp-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-privilege-wrt-tests" category="Web Runtime">
- <auto_tcn>155</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>155</total_tcn>
- <pkg_name>mobile/tct-privilege-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediakey-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>15</total_tcn>
- <pkg_name>mobile/tct-mediakey-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-deviceorientation-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>37</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>37</total_tcn>
- <pkg_name>mobile/tct-deviceorientation-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webmessaging-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>176</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>176</total_tcn>
- <pkg_name>mobile/tct-webmessaging-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-package-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>54</auto_tcn>
- <manual_tcn>12</manual_tcn>
- <total_tcn>66</total_tcn>
- <pkg_name>common/tct-package-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-notification-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>93</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>94</total_tcn>
- <pkg_name>mobile/tct-notification-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fmradio-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>67</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>74</total_tcn>
- <pkg_name>mobile/tct-fmradio-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-rt01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>12</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>12</total_tcn>
- <pkg_name>common/tct-rt01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-appcache-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>36</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>36</total_tcn>
- <pkg_name>mobile/tct-appcache-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-filesystemapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>208</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>208</total_tcn>
- <pkg_name>mobile/tct-filesystemapi-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-svg-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>9</manual_tcn>
- <total_tcn>12</total_tcn>
- <pkg_name>common/tct-svg-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-websocket-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>270</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>270</total_tcn>
- <pkg_name>mobile/tct-websocket-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-flexiblebox-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>25</auto_tcn>
- <manual_tcn>28</manual_tcn>
- <total_tcn>53</total_tcn>
- <pkg_name>common/tct-flexiblebox-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-dnd-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>6</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>6</total_tcn>
- <pkg_name>mobile/tct-dnd-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-extra-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>548</auto_tcn>
- <manual_tcn>25</manual_tcn>
- <total_tcn>573</total_tcn>
- <pkg_name>mobile/tct-extra-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fullscreen-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>16</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>16</total_tcn>
- <pkg_name>mobile/tct-fullscreen-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-colors-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>46</auto_tcn>
- <manual_tcn>29</manual_tcn>
- <total_tcn>75</total_tcn>
- <pkg_name>common/tct-colors-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-indexeddb-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>400</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>400</total_tcn>
- <pkg_name>mobile/tct-indexeddb-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sandbox-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>72</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>73</total_tcn>
- <pkg_name>common/tct-sandbox-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-networkbearerselection-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>25</total_tcn>
- <pkg_name>mobile/tct-networkbearerselection-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-push-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>41</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>41</total_tcn>
- <pkg_name>common/tct-push-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messageport-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>48</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>48</total_tcn>
- <pkg_name>mobile/tct-messageport-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-browserstate-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>mobile/tct-browserstate-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-cors-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>10</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>10</total_tcn>
- <pkg_name>common/tct-cors-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-xmlhttprequest-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>262</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>262</total_tcn>
- <pkg_name>mobile/tct-xmlhttprequest-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-navigationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>45</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>45</total_tcn>
- <pkg_name>mobile/tct-navigationtiming-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-typedarrays-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>80</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>80</total_tcn>
- <pkg_name>common/tct-typedarrays-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-animations-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>24</total_tcn>
- <pkg_name>common/tct-animations-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-badge-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>26</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>26</total_tcn>
- <pkg_name>mobile/tct-badge-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-nfc-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>195</auto_tcn>
- <manual_tcn>35</manual_tcn>
- <total_tcn>230</total_tcn>
- <pkg_name>mobile/tct-nfc-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-pagevisibility-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>18</auto_tcn>
- <manual_tcn>2</manual_tcn>
- <total_tcn>20</total_tcn>
- <pkg_name>mobile/tct-pagevisibility-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-contact-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>441</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>441</total_tcn>
- <pkg_name>mobile/tct-contact-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-content-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>245</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>245</total_tcn>
- <pkg_name>common/tct-content-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-gumallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>6</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>6</total_tcn>
- <pkg_name>common/tct-gumallow-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-notification-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>14</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>17</total_tcn>
- <pkg_name>mobile/tct-notification-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sp01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>4</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>4</total_tcn>
- <pkg_name>common/tct-sp01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widget02-w3c-tests" category="W3C/HTML5 APIs">
- <auto_tcn>68</auto_tcn>
- <manual_tcn>82</manual_tcn>
- <total_tcn>150</total_tcn>
- <pkg_name>mobile/tct-widget02-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-websetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>22</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>22</total_tcn>
- <pkg_name>mobile/tct-websetting-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-audio-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>333</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>334</total_tcn>
- <pkg_name>mobile/tct-audio-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-screenorientation-w3c-tests" launcher="xwalk" category="W3C/HTML5 APIs">
- <auto_tcn>17</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>17</total_tcn>
- <pkg_name>mobile/tct-screenorientation-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-rt02-wrt-tests" category="Web Runtime">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-rt02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sp02-wrt-tests" category="Web Runtime">
- <auto_tcn>1</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>1</total_tcn>
- <pkg_name>common/tct-sp02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sound-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>52</auto_tcn>
- <manual_tcn>8</manual_tcn>
- <total_tcn>60</total_tcn>
- <pkg_name>mobile/tct-sound-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ext02-wrt-tests" category="Web Runtime">
- <auto_tcn>8</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>8</total_tcn>
- <pkg_name>common/tct-ext02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-application-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>184</auto_tcn>
- <manual_tcn>8</manual_tcn>
- <total_tcn>192</total_tcn>
- <pkg_name>mobile/tct-application-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-bluetooth-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>257</auto_tcn>
- <manual_tcn>142</manual_tcn>
- <total_tcn>399</total_tcn>
- <pkg_name>mobile/tct-bluetooth-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-humanactivitymonitor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>61</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>61</total_tcn>
- <pkg_name>mobile/tct-humanactivitymonitor-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fonts-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>131</manual_tcn>
- <total_tcn>142</total_tcn>
- <pkg_name>common/tct-fonts-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-speech-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>40</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>41</total_tcn>
- <pkg_name>common/tct-speech-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-security-tcs-tests" launcher="WRTLauncher" category="Compliance">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-security-tcs-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ui01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>30</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>30</total_tcn>
- <pkg_name>mobile/tct-ui01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-animationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>18</total_tcn>
- <pkg_name>common/tct-animationtiming-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-selectorslevel2-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>30</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>30</total_tcn>
- <pkg_name>common/tct-selectorslevel2-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-wgtapi01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">
- <auto_tcn>107</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>107</total_tcn>
- <pkg_name>common/tct-wgtapi01-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-inputdevice-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>19</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>20</total_tcn>
- <pkg_name>mobile/tct-inputdevice-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webaudio-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>422</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>422</total_tcn>
- <pkg_name>mobile/tct-webaudio-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-filewriterapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>106</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>106</total_tcn>
- <pkg_name>mobile/tct-filewriterapi-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sensor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>119</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>119</total_tcn>
- <pkg_name>mobile/tct-sensor-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-secureelement-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>71</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>71</total_tcn>
- <pkg_name>mobile/tct-secureelement-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-power-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>50</auto_tcn>
- <manual_tcn>6</manual_tcn>
- <total_tcn>56</total_tcn>
- <pkg_name>mobile/tct-power-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-appwgt-wrt-tests" category="Web Runtime">
- <auto_tcn>7</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>7</total_tcn>
- <pkg_name>common/tct-appwgt-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-privilege-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>65</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>65</total_tcn>
- <pkg_name>common/tct-privilege-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-alarm-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>61</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>61</total_tcn>
- <pkg_name>common/tct-alarm-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-touchevent-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>16</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>mobile/tct-touchevent-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-wgtapi02-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>34</manual_tcn>
- <total_tcn>34</total_tcn>
- <pkg_name>common/tct-wgtapi02-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-archive-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>106</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>106</total_tcn>
- <pkg_name>common/tct-archive-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-account-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>89</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>89</total_tcn>
- <pkg_name>mobile/tct-account-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-tizen-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>81</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>81</total_tcn>
- <pkg_name>common/tct-tizen-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widget01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">
- <auto_tcn>155</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>155</total_tcn>
- <pkg_name>mobile/tct-widget01-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-bookmark-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>36</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>36</total_tcn>
- <pkg_name>mobile/tct-bookmark-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-3dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>32</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>32</total_tcn>
- <pkg_name>common/tct-3dtransforms-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-geoallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>208</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>211</total_tcn>
- <pkg_name>mobile/tct-geoallow-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-calendar-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>354</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>354</total_tcn>
- <pkg_name>mobile/tct-calendar-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sessionhistory-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>148</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>149</total_tcn>
- <pkg_name>common/tct-sessionhistory-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-datacontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>113</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>113</total_tcn>
- <pkg_name>mobile/tct-datacontrol-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-appcontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>5</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>5</total_tcn>
- <pkg_name>mobile/tct-appcontrol-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-callhistory-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>80</auto_tcn>
- <manual_tcn>27</manual_tcn>
- <total_tcn>107</total_tcn>
- <pkg_name>mobile/tct-callhistory-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-geodeny-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>mobile/tct-geodeny-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-canvas-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>846</auto_tcn>
- <manual_tcn>18</manual_tcn>
- <total_tcn>864</total_tcn>
- <pkg_name>common/tct-canvas-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ui-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>43</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>44</total_tcn>
- <pkg_name>common/tct-ui-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-testconfig" launcher="WRTLauncher">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>20</manual_tcn>
- <total_tcn>20</total_tcn>
- <pkg_name>common/tct-testconfig-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-selectorslevel1-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>78</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>78</total_tcn>
- <pkg_name>common/tct-selectorslevel1-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sse-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>68</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>68</total_tcn>
- <pkg_name>mobile/tct-sse-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widgetpolicy-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>33</manual_tcn>
- <total_tcn>33</total_tcn>
- <pkg_name>common/tct-widgetpolicy-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-batterystatus-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>23</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>mobile/tct-batterystatus-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediacontroller-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>162</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>165</total_tcn>
- <pkg_name>mobile/tct-mediacontroller-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests03" category="Web UI Framework">
- <auto_tcn>179</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>179</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests03-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-maxLength-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>14</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>14</total_tcn>
- <pkg_name>common/tct-maxLength-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests04" category="Web UI Framework">
- <auto_tcn>375</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>375</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests04-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-systeminfo-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>304</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>304</total_tcn>
- <pkg_name>mobile/tct-systeminfo-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests05" category="Web UI Framework">
- <auto_tcn>322</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>322</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests05-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-filesystem-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>289</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>292</total_tcn>
- <pkg_name>mobile/tct-filesystem-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests06" category="Web UI Framework">
- <auto_tcn>98</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>98</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests06-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests01" category="Web UI Framework">
- <auto_tcn>355</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>355</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests01-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests02" category="Web UI Framework">
- <auto_tcn>455</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>455</total_tcn>
- <pkg_name>mobile/tct-webuifw-tests02-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-vibration-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>2</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>2</total_tcn>
- <pkg_name>mobile/tct-vibration-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messaging-sms-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>184</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>184</total_tcn>
- <pkg_name>mobile/tct-messaging-sms-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-text-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>27</auto_tcn>
- <manual_tcn>15</manual_tcn>
- <total_tcn>42</total_tcn>
- <pkg_name>common/tct-text-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-stab-wrt-tests" category="Web Runtime">
- <auto_tcn>1</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>1</total_tcn>
- <pkg_name>common/tct-stab-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webstorage-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>177</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>181</total_tcn>
- <pkg_name>common/tct-webstorage-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-behavior-tests">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>30</manual_tcn>
- <total_tcn>30</total_tcn>
- <pkg_name>mobile/tct-behavior-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-download-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>62</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>62</total_tcn>
- <pkg_name>common/tct-download-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediaqueries-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>49</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>49</total_tcn>
- <pkg_name>mobile/tct-mediaqueries-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-systemsetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>33</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>33</total_tcn>
- <pkg_name>mobile/tct-systemsetting-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-backgrounds-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>541</auto_tcn>
- <manual_tcn>74</manual_tcn>
- <total_tcn>615</total_tcn>
- <pkg_name>mobile/tct-backgrounds-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-video-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>361</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>365</total_tcn>
- <pkg_name>mobile/tct-video-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-pm-wrt-tests" category="Web Runtime">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>24</total_tcn>
- <pkg_name>common/tct-pm-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webgl-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>889</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>889</total_tcn>
- <pkg_name>common/tct-webgl-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
-</ns3:testplan>
-
+<?xml version="1.0" encoding="UTF-8"?>\r
+<ns3:testplan xmlns:ns3="http://www.example.org/plan/" xmlns="" name="Full_mobile" profile="mobile">\r
+ <execute_type>All</execute_type>\r
+ <suite name="tct-webdatabase-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>247</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>247</total_tcn>\r
+ <pkg_name>mobile/tct-webdatabase-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-jsenhance-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>49</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>49</total_tcn>\r
+ <pkg_name>common/tct-jsenhance-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-multicolumn-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>141</auto_tcn>\r
+ <manual_tcn>18</manual_tcn>\r
+ <total_tcn>159</total_tcn>\r
+ <pkg_name>mobile/tct-multicolumn-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messaging-mms-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>123</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>123</total_tcn>\r
+ <pkg_name>mobile/tct-messaging-mms-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-workers-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>85</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>86</total_tcn>\r
+ <pkg_name>mobile/tct-workers-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-transitions-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>26</auto_tcn>\r
+ <manual_tcn>5</manual_tcn>\r
+ <total_tcn>31</total_tcn>\r
+ <pkg_name>common/tct-transitions-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-namespace-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>23</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>common/tct-namespace-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messaging-email-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>308</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>309</total_tcn>\r
+ <pkg_name>mobile/tct-messaging-email-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-2dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>34</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>34</total_tcn>\r
+ <pkg_name>common/tct-2dtransforms-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-time-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>470</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>470</total_tcn>\r
+ <pkg_name>mobile/tct-time-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-forms-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>151</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>151</total_tcn>\r
+ <pkg_name>mobile/tct-forms-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-capability-tests" launcher="WRTLauncher" category="Compliance">\r
+ <auto_tcn>15</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>15</total_tcn>\r
+ <pkg_name>common/tct-capability-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fileapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>98</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>101</total_tcn>\r
+ <pkg_name>mobile/tct-fileapi-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediacapture-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>7</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>7</total_tcn>\r
+ <pkg_name>common/tct-mediacapture-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ext01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>mobile/tct-ext01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-exif-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>64</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>64</total_tcn>\r
+ <pkg_name>common/tct-exif-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-csp-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>133</auto_tcn>\r
+ <manual_tcn>78</manual_tcn>\r
+ <total_tcn>211</total_tcn>\r
+ <pkg_name>mobile/tct-csp-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-privilege-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>155</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>155</total_tcn>\r
+ <pkg_name>mobile/tct-privilege-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediakey-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>15</total_tcn>\r
+ <pkg_name>mobile/tct-mediakey-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-deviceorientation-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>37</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>37</total_tcn>\r
+ <pkg_name>mobile/tct-deviceorientation-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webmessaging-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>176</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>176</total_tcn>\r
+ <pkg_name>mobile/tct-webmessaging-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-package-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>54</auto_tcn>\r
+ <manual_tcn>12</manual_tcn>\r
+ <total_tcn>66</total_tcn>\r
+ <pkg_name>common/tct-package-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-notification-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>93</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>94</total_tcn>\r
+ <pkg_name>mobile/tct-notification-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fmradio-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>67</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>74</total_tcn>\r
+ <pkg_name>mobile/tct-fmradio-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-rt01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>12</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>12</total_tcn>\r
+ <pkg_name>common/tct-rt01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-appcache-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>36</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>36</total_tcn>\r
+ <pkg_name>mobile/tct-appcache-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-filesystemapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>208</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>208</total_tcn>\r
+ <pkg_name>mobile/tct-filesystemapi-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-svg-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>9</manual_tcn>\r
+ <total_tcn>12</total_tcn>\r
+ <pkg_name>common/tct-svg-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-websocket-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>270</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>270</total_tcn>\r
+ <pkg_name>mobile/tct-websocket-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-flexiblebox-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>25</auto_tcn>\r
+ <manual_tcn>28</manual_tcn>\r
+ <total_tcn>53</total_tcn>\r
+ <pkg_name>common/tct-flexiblebox-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-dnd-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>6</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>6</total_tcn>\r
+ <pkg_name>mobile/tct-dnd-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-extra-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>548</auto_tcn>\r
+ <manual_tcn>25</manual_tcn>\r
+ <total_tcn>573</total_tcn>\r
+ <pkg_name>mobile/tct-extra-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fullscreen-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>16</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>16</total_tcn>\r
+ <pkg_name>mobile/tct-fullscreen-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-colors-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>46</auto_tcn>\r
+ <manual_tcn>29</manual_tcn>\r
+ <total_tcn>75</total_tcn>\r
+ <pkg_name>common/tct-colors-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-indexeddb-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>400</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>400</total_tcn>\r
+ <pkg_name>mobile/tct-indexeddb-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sandbox-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>72</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>73</total_tcn>\r
+ <pkg_name>common/tct-sandbox-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-networkbearerselection-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>25</total_tcn>\r
+ <pkg_name>mobile/tct-networkbearerselection-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-push-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>41</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>41</total_tcn>\r
+ <pkg_name>common/tct-push-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messageport-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>48</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>48</total_tcn>\r
+ <pkg_name>mobile/tct-messageport-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-browserstate-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>mobile/tct-browserstate-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-cors-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>10</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>10</total_tcn>\r
+ <pkg_name>common/tct-cors-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-xmlhttprequest-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>262</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>262</total_tcn>\r
+ <pkg_name>mobile/tct-xmlhttprequest-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-navigationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>45</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>45</total_tcn>\r
+ <pkg_name>mobile/tct-navigationtiming-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-typedarrays-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>80</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>80</total_tcn>\r
+ <pkg_name>common/tct-typedarrays-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-animations-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>24</total_tcn>\r
+ <pkg_name>common/tct-animations-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-badge-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>26</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>26</total_tcn>\r
+ <pkg_name>mobile/tct-badge-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-nfc-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>195</auto_tcn>\r
+ <manual_tcn>35</manual_tcn>\r
+ <total_tcn>230</total_tcn>\r
+ <pkg_name>mobile/tct-nfc-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-pagevisibility-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>18</auto_tcn>\r
+ <manual_tcn>2</manual_tcn>\r
+ <total_tcn>20</total_tcn>\r
+ <pkg_name>mobile/tct-pagevisibility-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-contact-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>441</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>441</total_tcn>\r
+ <pkg_name>mobile/tct-contact-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-content-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>245</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>245</total_tcn>\r
+ <pkg_name>common/tct-content-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-gumallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>6</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>6</total_tcn>\r
+ <pkg_name>common/tct-gumallow-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-notification-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>14</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>17</total_tcn>\r
+ <pkg_name>mobile/tct-notification-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sp01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>4</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>4</total_tcn>\r
+ <pkg_name>common/tct-sp01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widget02-w3c-tests" category="W3C/HTML5 APIs">\r
+ <auto_tcn>68</auto_tcn>\r
+ <manual_tcn>82</manual_tcn>\r
+ <total_tcn>150</total_tcn>\r
+ <pkg_name>mobile/tct-widget02-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-websetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>22</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>22</total_tcn>\r
+ <pkg_name>mobile/tct-websetting-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-audio-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>333</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>334</total_tcn>\r
+ <pkg_name>mobile/tct-audio-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-screenorientation-w3c-tests" launcher="xwalk" category="W3C/HTML5 APIs">\r
+ <auto_tcn>17</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>17</total_tcn>\r
+ <pkg_name>mobile/tct-screenorientation-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-rt02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-rt02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sp02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>1</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>1</total_tcn>\r
+ <pkg_name>common/tct-sp02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sound-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>52</auto_tcn>\r
+ <manual_tcn>8</manual_tcn>\r
+ <total_tcn>60</total_tcn>\r
+ <pkg_name>mobile/tct-sound-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ext02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>8</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>8</total_tcn>\r
+ <pkg_name>common/tct-ext02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-application-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>184</auto_tcn>\r
+ <manual_tcn>8</manual_tcn>\r
+ <total_tcn>192</total_tcn>\r
+ <pkg_name>mobile/tct-application-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-bluetooth-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>257</auto_tcn>\r
+ <manual_tcn>142</manual_tcn>\r
+ <total_tcn>399</total_tcn>\r
+ <pkg_name>mobile/tct-bluetooth-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-humanactivitymonitor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>61</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>61</total_tcn>\r
+ <pkg_name>mobile/tct-humanactivitymonitor-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fonts-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>131</manual_tcn>\r
+ <total_tcn>142</total_tcn>\r
+ <pkg_name>common/tct-fonts-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-speech-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>40</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>41</total_tcn>\r
+ <pkg_name>common/tct-speech-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-security-tcs-tests" launcher="WRTLauncher" category="Compliance">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-security-tcs-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ui01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>30</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>30</total_tcn>\r
+ <pkg_name>mobile/tct-ui01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-animationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>18</total_tcn>\r
+ <pkg_name>common/tct-animationtiming-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-selectorslevel2-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>30</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>30</total_tcn>\r
+ <pkg_name>common/tct-selectorslevel2-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-wgtapi01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">\r
+ <auto_tcn>107</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>107</total_tcn>\r
+ <pkg_name>common/tct-wgtapi01-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-inputdevice-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>19</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>20</total_tcn>\r
+ <pkg_name>mobile/tct-inputdevice-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webaudio-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>422</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>422</total_tcn>\r
+ <pkg_name>mobile/tct-webaudio-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-filewriterapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>106</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>106</total_tcn>\r
+ <pkg_name>mobile/tct-filewriterapi-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sensor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>119</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>119</total_tcn>\r
+ <pkg_name>mobile/tct-sensor-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-secureelement-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>71</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>71</total_tcn>\r
+ <pkg_name>mobile/tct-secureelement-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-power-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>50</auto_tcn>\r
+ <manual_tcn>6</manual_tcn>\r
+ <total_tcn>56</total_tcn>\r
+ <pkg_name>mobile/tct-power-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-appwgt-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>7</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>7</total_tcn>\r
+ <pkg_name>common/tct-appwgt-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-privilege-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>65</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>65</total_tcn>\r
+ <pkg_name>common/tct-privilege-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-alarm-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>61</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>61</total_tcn>\r
+ <pkg_name>common/tct-alarm-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-touchevent-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>16</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>mobile/tct-touchevent-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-wgtapi02-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>34</manual_tcn>\r
+ <total_tcn>34</total_tcn>\r
+ <pkg_name>common/tct-wgtapi02-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-archive-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>106</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>106</total_tcn>\r
+ <pkg_name>common/tct-archive-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-account-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>89</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>89</total_tcn>\r
+ <pkg_name>mobile/tct-account-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-tizen-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>81</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>81</total_tcn>\r
+ <pkg_name>common/tct-tizen-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widget01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">\r
+ <auto_tcn>155</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>155</total_tcn>\r
+ <pkg_name>mobile/tct-widget01-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-bookmark-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>36</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>36</total_tcn>\r
+ <pkg_name>mobile/tct-bookmark-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-3dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>32</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>32</total_tcn>\r
+ <pkg_name>common/tct-3dtransforms-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-geoallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>208</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>211</total_tcn>\r
+ <pkg_name>mobile/tct-geoallow-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-calendar-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>354</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>354</total_tcn>\r
+ <pkg_name>mobile/tct-calendar-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sessionhistory-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>148</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>149</total_tcn>\r
+ <pkg_name>common/tct-sessionhistory-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-datacontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>113</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>113</total_tcn>\r
+ <pkg_name>mobile/tct-datacontrol-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-appcontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>5</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>5</total_tcn>\r
+ <pkg_name>mobile/tct-appcontrol-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-callhistory-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>80</auto_tcn>\r
+ <manual_tcn>27</manual_tcn>\r
+ <total_tcn>107</total_tcn>\r
+ <pkg_name>mobile/tct-callhistory-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-geodeny-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>mobile/tct-geodeny-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-canvas-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>846</auto_tcn>\r
+ <manual_tcn>18</manual_tcn>\r
+ <total_tcn>864</total_tcn>\r
+ <pkg_name>common/tct-canvas-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ui-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>43</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>44</total_tcn>\r
+ <pkg_name>common/tct-ui-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-testconfig" launcher="WRTLauncher">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>20</manual_tcn>\r
+ <total_tcn>20</total_tcn>\r
+ <pkg_name>common/tct-testconfig-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-selectorslevel1-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>78</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>78</total_tcn>\r
+ <pkg_name>common/tct-selectorslevel1-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sse-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>68</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>68</total_tcn>\r
+ <pkg_name>mobile/tct-sse-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widgetpolicy-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>33</manual_tcn>\r
+ <total_tcn>33</total_tcn>\r
+ <pkg_name>common/tct-widgetpolicy-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-batterystatus-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>23</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>mobile/tct-batterystatus-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediacontroller-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>162</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>165</total_tcn>\r
+ <pkg_name>mobile/tct-mediacontroller-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests03" category="Web UI Framework">\r
+ <auto_tcn>179</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>179</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests03-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-maxLength-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>14</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>14</total_tcn>\r
+ <pkg_name>common/tct-maxLength-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests04" category="Web UI Framework">\r
+ <auto_tcn>375</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>375</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests04-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-systeminfo-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>304</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>304</total_tcn>\r
+ <pkg_name>mobile/tct-systeminfo-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests05" category="Web UI Framework">\r
+ <auto_tcn>322</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>322</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests05-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-filesystem-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>289</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>292</total_tcn>\r
+ <pkg_name>mobile/tct-filesystem-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests06" category="Web UI Framework">\r
+ <auto_tcn>98</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>98</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests06-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests01" category="Web UI Framework">\r
+ <auto_tcn>355</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>355</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests01-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests02" category="Web UI Framework">\r
+ <auto_tcn>455</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>455</total_tcn>\r
+ <pkg_name>mobile/tct-webuifw-tests02-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-vibration-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>2</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>2</total_tcn>\r
+ <pkg_name>mobile/tct-vibration-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messaging-sms-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>184</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>184</total_tcn>\r
+ <pkg_name>mobile/tct-messaging-sms-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-text-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>27</auto_tcn>\r
+ <manual_tcn>15</manual_tcn>\r
+ <total_tcn>42</total_tcn>\r
+ <pkg_name>common/tct-text-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-stab-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>1</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>1</total_tcn>\r
+ <pkg_name>common/tct-stab-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webstorage-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>177</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>181</total_tcn>\r
+ <pkg_name>common/tct-webstorage-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-behavior-tests">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>30</manual_tcn>\r
+ <total_tcn>30</total_tcn>\r
+ <pkg_name>mobile/tct-behavior-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-download-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>62</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>62</total_tcn>\r
+ <pkg_name>common/tct-download-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediaqueries-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>49</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>49</total_tcn>\r
+ <pkg_name>mobile/tct-mediaqueries-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-systemsetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>33</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>33</total_tcn>\r
+ <pkg_name>mobile/tct-systemsetting-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-backgrounds-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>541</auto_tcn>\r
+ <manual_tcn>74</manual_tcn>\r
+ <total_tcn>615</total_tcn>\r
+ <pkg_name>mobile/tct-backgrounds-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-video-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>361</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>365</total_tcn>\r
+ <pkg_name>mobile/tct-video-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-pm-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>24</total_tcn>\r
+ <pkg_name>common/tct-pm-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webgl-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>889</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>889</total_tcn>\r
+ <pkg_name>common/tct-webgl-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+</ns3:testplan>\r
+\r
-<?xml version="1.0" encoding="UTF-8"?>
-<ns3:testplan xmlns:ns3="http://www.example.org/plan/" xmlns="" name="Full_tv" profile="tv">
- <execute_type>All</execute_type>
- <suite name="tct-jsenhance-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>49</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>49</total_tcn>
- <pkg_name>common/tct-jsenhance-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-multicolumn-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>141</auto_tcn>
- <manual_tcn>18</manual_tcn>
- <total_tcn>159</total_tcn>
- <pkg_name>tv/tct-multicolumn-css3-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-workers-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>85</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>86</total_tcn>
- <pkg_name>tv/tct-workers-w3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-namespace-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>23</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>common/tct-namespace-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-transitions-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>26</auto_tcn>
- <manual_tcn>5</manual_tcn>
- <total_tcn>31</total_tcn>
- <pkg_name>common/tct-transitions-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-2dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>34</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>34</total_tcn>
- <pkg_name>common/tct-2dtransforms-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-time-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>459</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>459</total_tcn>
- <pkg_name>tv/tct-time-tizen-tests-2.4-1.zip</pkg_name>
- </suite>
- <suite name="tct-forms-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>146</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>146</total_tcn>
- <pkg_name>tv/tct-forms-html5-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-capability-tests" launcher="WRTLauncher" category="Compliance">
- <auto_tcn>15</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>15</total_tcn>
- <pkg_name>common/tct-capability-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fileapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>97</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>97</total_tcn>
- <pkg_name>tv/tct-fileapi-w3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-mediacapture-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>7</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>7</total_tcn>
- <pkg_name>common/tct-mediacapture-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ext01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>2</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>2</total_tcn>
- <pkg_name>tv/tct-ext01-wrt-tests-2.3-1.zip</pkg_name>
- </suite>
- <suite name="tct-tv-channel-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>123</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>123</total_tcn>
- <pkg_name>tv/tct-tv-channel-tizen-tests-2.4-1.zip</pkg_name>
- </suite>
- <suite name="tct-exif-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>63</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>63</total_tcn>
- <pkg_name>common/tct-exif-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-csp-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>133</auto_tcn>
- <manual_tcn>78</manual_tcn>
- <total_tcn>211</total_tcn>
- <pkg_name>common/tct-csp-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediakey-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>15</total_tcn>
- <pkg_name>common/tct-mediakey-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-deviceorientation-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>37</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>37</total_tcn>
- <pkg_name>common/tct-deviceorientation-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webmessaging-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>175</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>175</total_tcn>
- <pkg_name>tv/tct-webmessaging-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-package-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>54</auto_tcn>
- <manual_tcn>12</manual_tcn>
- <total_tcn>66</total_tcn>
- <pkg_name>common/tct-package-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-appcache-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>36</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>36</total_tcn>
- <pkg_name>tv/tct-appcache-html5-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-rt01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>12</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>12</total_tcn>
- <pkg_name>common/tct-rt01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-svg-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>9</manual_tcn>
- <total_tcn>12</total_tcn>
- <pkg_name>common/tct-svg-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-flexiblebox-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>25</auto_tcn>
- <manual_tcn>28</manual_tcn>
- <total_tcn>53</total_tcn>
- <pkg_name>common/tct-flexiblebox-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-websocket-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>268</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>268</total_tcn>
- <pkg_name>tv/tct-websocket-w3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-extra-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>544</auto_tcn>
- <manual_tcn>25</manual_tcn>
- <total_tcn>569</total_tcn>
- <pkg_name>tv/tct-extra-html5-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-dnd-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>6</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>6</total_tcn>
- <pkg_name>common/tct-dnd-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fullscreen-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>16</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>16</total_tcn>
- <pkg_name>tv/tct-fullscreen-nonw3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-colors-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>46</auto_tcn>
- <manual_tcn>29</manual_tcn>
- <total_tcn>75</total_tcn>
- <pkg_name>common/tct-colors-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-indexeddb-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>391</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>391</total_tcn>
- <pkg_name>tv/tct-indexeddb-w3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-sandbox-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>72</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>73</total_tcn>
- <pkg_name>common/tct-sandbox-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messageport-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>48</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>48</total_tcn>
- <pkg_name>common/tct-messageport-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-browserstate-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>tv/tct-browserstate-html5-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-cors-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>10</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>10</total_tcn>
- <pkg_name>common/tct-cors-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-xmlhttprequest-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>202</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>202</total_tcn>
- <pkg_name>tv/tct-xmlhttprequest-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-navigationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>45</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>45</total_tcn>
- <pkg_name>tv/tct-navigationtiming-w3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-typedarrays-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>80</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>80</total_tcn>
- <pkg_name>common/tct-typedarrays-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-animations-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>24</total_tcn>
- <pkg_name>common/tct-animations-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-badge-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>26</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>26</total_tcn>
- <pkg_name>common/tct-badge-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-pagevisibility-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>18</auto_tcn>
- <manual_tcn>2</manual_tcn>
- <total_tcn>20</total_tcn>
- <pkg_name>tv/tct-pagevisibility-w3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-content-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>230</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>230</total_tcn>
- <pkg_name>common/tct-content-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-gumallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>6</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>6</total_tcn>
- <pkg_name>common/tct-gumallow-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-notification-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>14</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>17</total_tcn>
- <pkg_name>tv/tct-notification-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-tv-displaycontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>20</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>20</total_tcn>
- <pkg_name>tv/tct-tv-displaycontrol-tizen-tests-2.4-1.zip</pkg_name>
- </suite>
- <suite name="tct-sp01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>4</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>4</total_tcn>
- <pkg_name>common/tct-sp01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widget02-w3c-tests" category="W3C/HTML5 APIs">
- <auto_tcn>18</auto_tcn>
- <manual_tcn>51</manual_tcn>
- <total_tcn>69</total_tcn>
- <pkg_name>tv/tct-widget02-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-websetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>22</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>22</total_tcn>
- <pkg_name>tv/tct-websetting-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-audio-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>338</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>339</total_tcn>
- <pkg_name>common/tct-audio-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-screenorientation-w3c-tests" launcher="xwalk" category="W3C/HTML5 APIs">
- <auto_tcn>17</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>17</total_tcn>
- <pkg_name>tv/tct-screenorientation-w3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-sp02-wrt-tests" category="Web Runtime">
- <auto_tcn>1</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>1</total_tcn>
- <pkg_name>common/tct-sp02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sound-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>52</auto_tcn>
- <manual_tcn>8</manual_tcn>
- <total_tcn>60</total_tcn>
- <pkg_name>common/tct-sound-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-rt02-wrt-tests" category="Web Runtime">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-rt02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ext02-wrt-tests" category="Web Runtime">
- <auto_tcn>8</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>8</total_tcn>
- <pkg_name>common/tct-ext02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-application-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>159</auto_tcn>
- <manual_tcn>6</manual_tcn>
- <total_tcn>165</total_tcn>
- <pkg_name>tv/tct-application-tizen-tests-2.3-1.zip</pkg_name>
- </suite>
- <suite name="tct-humanactivitymonitor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>47</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>47</total_tcn>
- <pkg_name>common/tct-humanactivitymonitor-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fonts-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>131</manual_tcn>
- <total_tcn>142</total_tcn>
- <pkg_name>common/tct-fonts-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-security-tcs-tests" launcher="WRTLauncher" category="Compliance">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-security-tcs-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-speech-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>40</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>41</total_tcn>
- <pkg_name>common/tct-speech-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ui01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>11</total_tcn>
- <pkg_name>tv/tct-ui01-wrt-tests-2.4-1.zip</pkg_name>
- </suite>
- <suite name="tct-dynamicbox-wrt-tests" category="Web Runtime">
- <auto_tcn>17</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>17</total_tcn>
- <pkg_name>common/tct-dynamicbox-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-animationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>18</total_tcn>
- <pkg_name>common/tct-animationtiming-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-tv-window-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>70</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>70</total_tcn>
- <pkg_name>tv/tct-tv-window-tizen-tests-2.4-1.zip</pkg_name>
- </suite>
- <suite name="tct-selectorslevel2-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>30</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>30</total_tcn>
- <pkg_name>common/tct-selectorslevel2-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-wgtapi01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">
- <auto_tcn>107</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>107</total_tcn>
- <pkg_name>common/tct-wgtapi01-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webaudio-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>422</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>422</total_tcn>
- <pkg_name>tv/tct-webaudio-w3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-sensor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>100</auto_tcn>
- <manual_tcn>19</manual_tcn>
- <total_tcn>119</total_tcn>
- <pkg_name>common/tct-sensor-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-power-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>50</auto_tcn>
- <manual_tcn>6</manual_tcn>
- <total_tcn>56</total_tcn>
- <pkg_name>common/tct-power-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-tv-inputdevice-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>23</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>tv/tct-tv-inputdevice-tizen-tests-2.4-1.zip</pkg_name>
- </suite>
- <suite name="tct-appwgt-wrt-tests" category="Web Runtime">
- <auto_tcn>7</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>7</total_tcn>
- <pkg_name>common/tct-appwgt-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-privilege-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>70</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>70</total_tcn>
- <pkg_name>common/tct-privilege-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-alarm-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>61</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>61</total_tcn>
- <pkg_name>common/tct-alarm-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-touchevent-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>16</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>common/tct-touchevent-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-tv-audiocontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>61</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>61</total_tcn>
- <pkg_name>tv/tct-tv-audiocontrol-tizen-tests-2.4-1.zip</pkg_name>
- </suite>
- <suite name="tct-wgtapi02-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>34</manual_tcn>
- <total_tcn>34</total_tcn>
- <pkg_name>common/tct-wgtapi02-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-archive-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>106</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>106</total_tcn>
- <pkg_name>common/tct-archive-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-tizen-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>81</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>81</total_tcn>
- <pkg_name>common/tct-tizen-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widget01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">
- <auto_tcn>75</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>75</total_tcn>
- <pkg_name>tv/tct-widget01-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-3dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>32</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>32</total_tcn>
- <pkg_name>common/tct-3dtransforms-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-geoallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>209</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>212</total_tcn>
- <pkg_name>common/tct-geoallow-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sessionhistory-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>148</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>149</total_tcn>
- <pkg_name>common/tct-sessionhistory-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-geodeny-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-geodeny-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-canvas-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>846</auto_tcn>
- <manual_tcn>19</manual_tcn>
- <total_tcn>865</total_tcn>
- <pkg_name>common/tct-canvas-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ui-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>43</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>44</total_tcn>
- <pkg_name>common/tct-ui-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-testconfig" launcher="WRTLauncher">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>19</manual_tcn>
- <total_tcn>19</total_tcn>
- <pkg_name>common/tct-testconfig-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-selectorslevel1-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>78</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>78</total_tcn>
- <pkg_name>common/tct-selectorslevel1-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sse-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>68</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>68</total_tcn>
- <pkg_name>tv/tct-sse-w3c-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-widgetpolicy-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>33</manual_tcn>
- <total_tcn>33</total_tcn>
- <pkg_name>common/tct-widgetpolicy-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-batterystatus-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>23</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>common/tct-batterystatus-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests03" category="Web UI Framework">
- <auto_tcn>179</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>179</total_tcn>
- <pkg_name>tv/tct-webuifw-tests03-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests04" category="Web UI Framework">
- <auto_tcn>375</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>375</total_tcn>
- <pkg_name>tv/tct-webuifw-tests04-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-maxLength-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>14</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>14</total_tcn>
- <pkg_name>common/tct-maxLength-wrt-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests05" category="Web UI Framework">
- <auto_tcn>322</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>322</total_tcn>
- <pkg_name>tv/tct-webuifw-tests05-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-filesystem-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>291</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>294</total_tcn>
- <pkg_name>tv/tct-filesystem-tizen-tests-2.3-1.zip</pkg_name>
- </suite>
- <suite name="tct-systeminfo-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>276</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>276</total_tcn>
- <pkg_name>tv/tct-systeminfo-tizen-tests-2.3-1.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests06" category="Web UI Framework">
- <auto_tcn>98</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>98</total_tcn>
- <pkg_name>tv/tct-webuifw-tests06-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests01" category="Web UI Framework">
- <auto_tcn>355</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>355</total_tcn>
- <pkg_name>tv/tct-webuifw-tests01-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests02" category="Web UI Framework">
- <auto_tcn>455</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>455</total_tcn>
- <pkg_name>tv/tct-webuifw-tests02-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-vibration-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>2</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>2</total_tcn>
- <pkg_name>common/tct-vibration-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-stab-wrt-tests" category="Web Runtime">
- <auto_tcn>1</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>1</total_tcn>
- <pkg_name>common/tct-stab-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-text-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>27</auto_tcn>
- <manual_tcn>15</manual_tcn>
- <total_tcn>42</total_tcn>
- <pkg_name>common/tct-text-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-behavior-tests">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>15</manual_tcn>
- <total_tcn>15</total_tcn>
- <pkg_name>tv/tct-behavior-tests-2.4-1.zip</pkg_name>
- </suite>
- <suite name="tct-webstorage-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>177</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>181</total_tcn>
- <pkg_name>common/tct-webstorage-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-download-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>62</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>62</total_tcn>
- <pkg_name>common/tct-download-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediaqueries-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>52</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>52</total_tcn>
- <pkg_name>tv/tct-mediaqueries-css3-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-systemsetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>33</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>33</total_tcn>
- <pkg_name>common/tct-systemsetting-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-backgrounds-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>541</auto_tcn>
- <manual_tcn>74</manual_tcn>
- <total_tcn>615</total_tcn>
- <pkg_name>tv/tct-backgrounds-css3-tests-2.3.1.zip</pkg_name>
- </suite>
- <suite name="tct-video-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>366</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>370</total_tcn>
- <pkg_name>tv/tct-video-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-pm-wrt-tests" category="Web Runtime">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>24</total_tcn>
- <pkg_name>common/tct-pm-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webgl-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>889</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>889</total_tcn>
- <pkg_name>common/tct-webgl-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
-</ns3:testplan>
-
+<?xml version="1.0" encoding="UTF-8"?>\r
+<ns3:testplan xmlns:ns3="http://www.example.org/plan/" xmlns="" name="Full_tv" profile="tv">\r
+ <execute_type>All</execute_type>\r
+ <suite name="tct-jsenhance-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>49</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>49</total_tcn>\r
+ <pkg_name>common/tct-jsenhance-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-multicolumn-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>141</auto_tcn>\r
+ <manual_tcn>18</manual_tcn>\r
+ <total_tcn>159</total_tcn>\r
+ <pkg_name>tv/tct-multicolumn-css3-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-workers-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>85</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>86</total_tcn>\r
+ <pkg_name>tv/tct-workers-w3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-namespace-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>23</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>common/tct-namespace-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-transitions-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>26</auto_tcn>\r
+ <manual_tcn>5</manual_tcn>\r
+ <total_tcn>31</total_tcn>\r
+ <pkg_name>common/tct-transitions-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-2dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>34</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>34</total_tcn>\r
+ <pkg_name>common/tct-2dtransforms-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-time-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>459</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>459</total_tcn>\r
+ <pkg_name>tv/tct-time-tizen-tests-2.4-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-forms-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>146</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>146</total_tcn>\r
+ <pkg_name>tv/tct-forms-html5-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-capability-tests" launcher="WRTLauncher" category="Compliance">\r
+ <auto_tcn>15</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>15</total_tcn>\r
+ <pkg_name>common/tct-capability-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fileapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>97</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>97</total_tcn>\r
+ <pkg_name>tv/tct-fileapi-w3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediacapture-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>7</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>7</total_tcn>\r
+ <pkg_name>common/tct-mediacapture-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ext01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>2</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>2</total_tcn>\r
+ <pkg_name>tv/tct-ext01-wrt-tests-2.3-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-tv-channel-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>123</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>123</total_tcn>\r
+ <pkg_name>tv/tct-tv-channel-tizen-tests-2.4-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-exif-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>63</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>63</total_tcn>\r
+ <pkg_name>common/tct-exif-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-csp-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>133</auto_tcn>\r
+ <manual_tcn>78</manual_tcn>\r
+ <total_tcn>211</total_tcn>\r
+ <pkg_name>common/tct-csp-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediakey-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>15</total_tcn>\r
+ <pkg_name>common/tct-mediakey-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-deviceorientation-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>37</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>37</total_tcn>\r
+ <pkg_name>common/tct-deviceorientation-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webmessaging-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>175</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>175</total_tcn>\r
+ <pkg_name>tv/tct-webmessaging-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-package-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>54</auto_tcn>\r
+ <manual_tcn>12</manual_tcn>\r
+ <total_tcn>66</total_tcn>\r
+ <pkg_name>common/tct-package-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-appcache-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>36</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>36</total_tcn>\r
+ <pkg_name>tv/tct-appcache-html5-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-rt01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>12</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>12</total_tcn>\r
+ <pkg_name>common/tct-rt01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-svg-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>9</manual_tcn>\r
+ <total_tcn>12</total_tcn>\r
+ <pkg_name>common/tct-svg-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-flexiblebox-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>25</auto_tcn>\r
+ <manual_tcn>28</manual_tcn>\r
+ <total_tcn>53</total_tcn>\r
+ <pkg_name>common/tct-flexiblebox-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-websocket-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>268</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>268</total_tcn>\r
+ <pkg_name>tv/tct-websocket-w3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-extra-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>544</auto_tcn>\r
+ <manual_tcn>25</manual_tcn>\r
+ <total_tcn>569</total_tcn>\r
+ <pkg_name>tv/tct-extra-html5-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-dnd-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>6</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>6</total_tcn>\r
+ <pkg_name>common/tct-dnd-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fullscreen-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>16</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>16</total_tcn>\r
+ <pkg_name>tv/tct-fullscreen-nonw3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-colors-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>46</auto_tcn>\r
+ <manual_tcn>29</manual_tcn>\r
+ <total_tcn>75</total_tcn>\r
+ <pkg_name>common/tct-colors-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-indexeddb-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>391</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>391</total_tcn>\r
+ <pkg_name>tv/tct-indexeddb-w3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sandbox-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>72</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>73</total_tcn>\r
+ <pkg_name>common/tct-sandbox-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messageport-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>48</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>48</total_tcn>\r
+ <pkg_name>common/tct-messageport-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-browserstate-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>tv/tct-browserstate-html5-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-cors-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>10</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>10</total_tcn>\r
+ <pkg_name>common/tct-cors-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-xmlhttprequest-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>202</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>202</total_tcn>\r
+ <pkg_name>tv/tct-xmlhttprequest-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-navigationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>45</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>45</total_tcn>\r
+ <pkg_name>tv/tct-navigationtiming-w3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-typedarrays-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>80</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>80</total_tcn>\r
+ <pkg_name>common/tct-typedarrays-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-animations-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>24</total_tcn>\r
+ <pkg_name>common/tct-animations-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-badge-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>26</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>26</total_tcn>\r
+ <pkg_name>common/tct-badge-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-pagevisibility-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>18</auto_tcn>\r
+ <manual_tcn>2</manual_tcn>\r
+ <total_tcn>20</total_tcn>\r
+ <pkg_name>tv/tct-pagevisibility-w3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-content-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>230</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>230</total_tcn>\r
+ <pkg_name>common/tct-content-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-gumallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>6</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>6</total_tcn>\r
+ <pkg_name>common/tct-gumallow-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-notification-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>14</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>17</total_tcn>\r
+ <pkg_name>tv/tct-notification-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-tv-displaycontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>20</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>20</total_tcn>\r
+ <pkg_name>tv/tct-tv-displaycontrol-tizen-tests-2.4-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sp01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>4</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>4</total_tcn>\r
+ <pkg_name>common/tct-sp01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widget02-w3c-tests" category="W3C/HTML5 APIs">\r
+ <auto_tcn>18</auto_tcn>\r
+ <manual_tcn>51</manual_tcn>\r
+ <total_tcn>69</total_tcn>\r
+ <pkg_name>tv/tct-widget02-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-websetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>22</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>22</total_tcn>\r
+ <pkg_name>tv/tct-websetting-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-audio-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>338</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>339</total_tcn>\r
+ <pkg_name>common/tct-audio-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-screenorientation-w3c-tests" launcher="xwalk" category="W3C/HTML5 APIs">\r
+ <auto_tcn>17</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>17</total_tcn>\r
+ <pkg_name>tv/tct-screenorientation-w3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sp02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>1</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>1</total_tcn>\r
+ <pkg_name>common/tct-sp02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sound-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>52</auto_tcn>\r
+ <manual_tcn>8</manual_tcn>\r
+ <total_tcn>60</total_tcn>\r
+ <pkg_name>common/tct-sound-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-rt02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-rt02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ext02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>8</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>8</total_tcn>\r
+ <pkg_name>common/tct-ext02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-application-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>159</auto_tcn>\r
+ <manual_tcn>6</manual_tcn>\r
+ <total_tcn>165</total_tcn>\r
+ <pkg_name>tv/tct-application-tizen-tests-2.3-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-humanactivitymonitor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>47</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>47</total_tcn>\r
+ <pkg_name>common/tct-humanactivitymonitor-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fonts-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>131</manual_tcn>\r
+ <total_tcn>142</total_tcn>\r
+ <pkg_name>common/tct-fonts-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-security-tcs-tests" launcher="WRTLauncher" category="Compliance">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-security-tcs-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-speech-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>40</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>41</total_tcn>\r
+ <pkg_name>common/tct-speech-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ui01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>11</total_tcn>\r
+ <pkg_name>tv/tct-ui01-wrt-tests-2.4-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-dynamicbox-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>17</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>17</total_tcn>\r
+ <pkg_name>common/tct-dynamicbox-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-animationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>18</total_tcn>\r
+ <pkg_name>common/tct-animationtiming-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-tv-window-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>70</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>70</total_tcn>\r
+ <pkg_name>tv/tct-tv-window-tizen-tests-2.4-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-selectorslevel2-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>30</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>30</total_tcn>\r
+ <pkg_name>common/tct-selectorslevel2-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-wgtapi01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">\r
+ <auto_tcn>107</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>107</total_tcn>\r
+ <pkg_name>common/tct-wgtapi01-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webaudio-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>422</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>422</total_tcn>\r
+ <pkg_name>tv/tct-webaudio-w3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sensor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>100</auto_tcn>\r
+ <manual_tcn>19</manual_tcn>\r
+ <total_tcn>119</total_tcn>\r
+ <pkg_name>common/tct-sensor-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-power-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>50</auto_tcn>\r
+ <manual_tcn>6</manual_tcn>\r
+ <total_tcn>56</total_tcn>\r
+ <pkg_name>common/tct-power-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-tv-inputdevice-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>23</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>tv/tct-tv-inputdevice-tizen-tests-2.4-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-appwgt-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>7</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>7</total_tcn>\r
+ <pkg_name>common/tct-appwgt-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-privilege-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>70</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>70</total_tcn>\r
+ <pkg_name>common/tct-privilege-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-alarm-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>61</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>61</total_tcn>\r
+ <pkg_name>common/tct-alarm-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-touchevent-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>16</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>common/tct-touchevent-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-tv-audiocontrol-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>61</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>61</total_tcn>\r
+ <pkg_name>tv/tct-tv-audiocontrol-tizen-tests-2.4-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-wgtapi02-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>34</manual_tcn>\r
+ <total_tcn>34</total_tcn>\r
+ <pkg_name>common/tct-wgtapi02-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-archive-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>106</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>106</total_tcn>\r
+ <pkg_name>common/tct-archive-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-tizen-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>81</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>81</total_tcn>\r
+ <pkg_name>common/tct-tizen-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widget01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">\r
+ <auto_tcn>75</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>75</total_tcn>\r
+ <pkg_name>tv/tct-widget01-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-3dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>32</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>32</total_tcn>\r
+ <pkg_name>common/tct-3dtransforms-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-geoallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>209</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>212</total_tcn>\r
+ <pkg_name>common/tct-geoallow-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sessionhistory-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>148</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>149</total_tcn>\r
+ <pkg_name>common/tct-sessionhistory-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-geodeny-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-geodeny-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-canvas-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>846</auto_tcn>\r
+ <manual_tcn>19</manual_tcn>\r
+ <total_tcn>865</total_tcn>\r
+ <pkg_name>common/tct-canvas-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ui-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>43</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>44</total_tcn>\r
+ <pkg_name>common/tct-ui-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-testconfig" launcher="WRTLauncher">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>19</manual_tcn>\r
+ <total_tcn>19</total_tcn>\r
+ <pkg_name>common/tct-testconfig-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-selectorslevel1-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>78</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>78</total_tcn>\r
+ <pkg_name>common/tct-selectorslevel1-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sse-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>68</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>68</total_tcn>\r
+ <pkg_name>tv/tct-sse-w3c-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widgetpolicy-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>33</manual_tcn>\r
+ <total_tcn>33</total_tcn>\r
+ <pkg_name>common/tct-widgetpolicy-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-batterystatus-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>23</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>common/tct-batterystatus-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests03" category="Web UI Framework">\r
+ <auto_tcn>179</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>179</total_tcn>\r
+ <pkg_name>tv/tct-webuifw-tests03-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests04" category="Web UI Framework">\r
+ <auto_tcn>375</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>375</total_tcn>\r
+ <pkg_name>tv/tct-webuifw-tests04-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-maxLength-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>14</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>14</total_tcn>\r
+ <pkg_name>common/tct-maxLength-wrt-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests05" category="Web UI Framework">\r
+ <auto_tcn>322</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>322</total_tcn>\r
+ <pkg_name>tv/tct-webuifw-tests05-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-filesystem-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>291</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>294</total_tcn>\r
+ <pkg_name>tv/tct-filesystem-tizen-tests-2.3-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-systeminfo-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>276</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>276</total_tcn>\r
+ <pkg_name>tv/tct-systeminfo-tizen-tests-2.3-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests06" category="Web UI Framework">\r
+ <auto_tcn>98</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>98</total_tcn>\r
+ <pkg_name>tv/tct-webuifw-tests06-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests01" category="Web UI Framework">\r
+ <auto_tcn>355</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>355</total_tcn>\r
+ <pkg_name>tv/tct-webuifw-tests01-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests02" category="Web UI Framework">\r
+ <auto_tcn>455</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>455</total_tcn>\r
+ <pkg_name>tv/tct-webuifw-tests02-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-vibration-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>2</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>2</total_tcn>\r
+ <pkg_name>common/tct-vibration-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-stab-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>1</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>1</total_tcn>\r
+ <pkg_name>common/tct-stab-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-text-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>27</auto_tcn>\r
+ <manual_tcn>15</manual_tcn>\r
+ <total_tcn>42</total_tcn>\r
+ <pkg_name>common/tct-text-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-behavior-tests">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>15</manual_tcn>\r
+ <total_tcn>15</total_tcn>\r
+ <pkg_name>tv/tct-behavior-tests-2.4-1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webstorage-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>177</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>181</total_tcn>\r
+ <pkg_name>common/tct-webstorage-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-download-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>62</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>62</total_tcn>\r
+ <pkg_name>common/tct-download-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediaqueries-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>52</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>52</total_tcn>\r
+ <pkg_name>tv/tct-mediaqueries-css3-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-systemsetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>33</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>33</total_tcn>\r
+ <pkg_name>common/tct-systemsetting-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-backgrounds-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>541</auto_tcn>\r
+ <manual_tcn>74</manual_tcn>\r
+ <total_tcn>615</total_tcn>\r
+ <pkg_name>tv/tct-backgrounds-css3-tests-2.3.1.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-video-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>366</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>370</total_tcn>\r
+ <pkg_name>tv/tct-video-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-pm-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>24</total_tcn>\r
+ <pkg_name>common/tct-pm-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webgl-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>889</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>889</total_tcn>\r
+ <pkg_name>common/tct-webgl-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+</ns3:testplan>\r
+\r
-<?xml version="1.0" encoding="UTF-8"?>
-<ns3:testplan xmlns:ns3="http://www.example.org/plan/" xmlns="" name="Full_wearable" profile="wearable">
- <execute_type>All</execute_type>
- <suite name="tct-sp01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>4</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>4</total_tcn>
- <pkg_name>common/tct-sp01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widget02-w3c-tests" category="W3C/HTML5 APIs">
- <auto_tcn>68</auto_tcn>
- <manual_tcn>63</manual_tcn>
- <total_tcn>131</total_tcn>
- <pkg_name>wearable/tct-widget02-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-jsenhance-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>49</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>49</total_tcn>
- <pkg_name>common/tct-jsenhance-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-audio-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>338</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>339</total_tcn>
- <pkg_name>common/tct-audio-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sp02-wrt-tests" category="Web Runtime">
- <auto_tcn>1</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>1</total_tcn>
- <pkg_name>common/tct-sp02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-rt02-wrt-tests" category="Web Runtime">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-rt02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sound-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>52</auto_tcn>
- <manual_tcn>8</manual_tcn>
- <total_tcn>60</total_tcn>
- <pkg_name>common/tct-sound-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-workers-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>85</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>86</total_tcn>
- <pkg_name>wearable/tct-workers-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ext02-wrt-tests" category="Web Runtime">
- <auto_tcn>8</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>8</total_tcn>
- <pkg_name>common/tct-ext02-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-transitions-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>26</auto_tcn>
- <manual_tcn>5</manual_tcn>
- <total_tcn>31</total_tcn>
- <pkg_name>common/tct-transitions-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-namespace-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>23</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>common/tct-namespace-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-application-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>159</auto_tcn>
- <manual_tcn>6</manual_tcn>
- <total_tcn>165</total_tcn>
- <pkg_name>wearable/tct-application-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-humanactivitymonitor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>47</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>47</total_tcn>
- <pkg_name>common/tct-humanactivitymonitor-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-bluetooth-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>214</auto_tcn>
- <manual_tcn>44</manual_tcn>
- <total_tcn>258</total_tcn>
- <pkg_name>common/tct-bluetooth-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fonts-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>131</manual_tcn>
- <total_tcn>142</total_tcn>
- <pkg_name>common/tct-fonts-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-speech-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>40</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>41</total_tcn>
- <pkg_name>common/tct-speech-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-security-tcs-tests" launcher="WRTLauncher" category="Compliance">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-security-tcs-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ui01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>11</total_tcn>
- <pkg_name>wearable/tct-ui01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-dynamicbox-wrt-tests" category="Web Runtime">
- <auto_tcn>17</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>17</total_tcn>
- <pkg_name>common/tct-dynamicbox-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-animationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>18</total_tcn>
- <pkg_name>common/tct-animationtiming-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-selectorslevel2-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>30</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>30</total_tcn>
- <pkg_name>common/tct-selectorslevel2-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-2dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>34</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>34</total_tcn>
- <pkg_name>common/tct-2dtransforms-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-forms-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>146</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>146</total_tcn>
- <pkg_name>wearable/tct-forms-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-time-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>470</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>470</total_tcn>
- <pkg_name>wearable/tct-time-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-wgtapi01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">
- <auto_tcn>107</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>107</total_tcn>
- <pkg_name>common/tct-wgtapi01-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-fileapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>98</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>101</total_tcn>
- <pkg_name>wearable/tct-fileapi-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-capability-tests" launcher="WRTLauncher" category="Compliance">
- <auto_tcn>15</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>15</total_tcn>
- <pkg_name>common/tct-capability-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ext01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>2</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>2</total_tcn>
- <pkg_name>wearable/tct-ext01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediacapture-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>7</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>7</total_tcn>
- <pkg_name>common/tct-mediacapture-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-exif-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>63</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>63</total_tcn>
- <pkg_name>common/tct-exif-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-csp-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>133</auto_tcn>
- <manual_tcn>78</manual_tcn>
- <total_tcn>211</total_tcn>
- <pkg_name>common/tct-csp-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sensor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>119</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>119</total_tcn>
- <pkg_name>common/tct-sensor-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-privilege-wrt-tests" category="Web Runtime">
- <auto_tcn>142</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>142</total_tcn>
- <pkg_name>wearable/tct-privilege-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-power-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>50</auto_tcn>
- <manual_tcn>6</manual_tcn>
- <total_tcn>56</total_tcn>
- <pkg_name>common/tct-power-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-appwgt-wrt-tests" category="Web Runtime">
- <auto_tcn>7</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>7</total_tcn>
- <pkg_name>common/tct-appwgt-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-privilege-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>66</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>66</total_tcn>
- <pkg_name>common/tct-privilege-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediakey-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>11</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>15</total_tcn>
- <pkg_name>common/tct-mediakey-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-alarm-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>61</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>61</total_tcn>
- <pkg_name>common/tct-alarm-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-touchevent-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>16</auto_tcn>
- <manual_tcn>7</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>common/tct-touchevent-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-wgtapi02-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>34</manual_tcn>
- <total_tcn>34</total_tcn>
- <pkg_name>common/tct-wgtapi02-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-deviceorientation-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>37</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>37</total_tcn>
- <pkg_name>common/tct-deviceorientation-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-archive-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>106</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>106</total_tcn>
- <pkg_name>common/tct-archive-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webmessaging-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>175</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>175</total_tcn>
- <pkg_name>wearable/tct-webmessaging-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-package-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>54</auto_tcn>
- <manual_tcn>12</manual_tcn>
- <total_tcn>66</total_tcn>
- <pkg_name>common/tct-package-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-notification-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>85</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>85</total_tcn>
- <pkg_name>wearable/tct-notification-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-tizen-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>81</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>81</total_tcn>
- <pkg_name>common/tct-tizen-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-rt01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>12</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>12</total_tcn>
- <pkg_name>common/tct-rt01-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widget01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">
- <auto_tcn>155</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>155</total_tcn>
- <pkg_name>wearable/tct-widget01-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-svg-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>3</auto_tcn>
- <manual_tcn>9</manual_tcn>
- <total_tcn>12</total_tcn>
- <pkg_name>common/tct-svg-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-3dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>32</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>32</total_tcn>
- <pkg_name>common/tct-3dtransforms-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-geoallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>209</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>212</total_tcn>
- <pkg_name>common/tct-geoallow-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sessionhistory-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>148</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>149</total_tcn>
- <pkg_name>common/tct-sessionhistory-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-websocket-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>268</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>268</total_tcn>
- <pkg_name>wearable/tct-websocket-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-flexiblebox-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>25</auto_tcn>
- <manual_tcn>28</manual_tcn>
- <total_tcn>53</total_tcn>
- <pkg_name>common/tct-flexiblebox-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-extra-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>544</auto_tcn>
- <manual_tcn>25</manual_tcn>
- <total_tcn>569</total_tcn>
- <pkg_name>wearable/tct-extra-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-dnd-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>6</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>6</total_tcn>
- <pkg_name>common/tct-dnd-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-geodeny-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>3</manual_tcn>
- <total_tcn>3</total_tcn>
- <pkg_name>common/tct-geodeny-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-colors-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>46</auto_tcn>
- <manual_tcn>29</manual_tcn>
- <total_tcn>75</total_tcn>
- <pkg_name>common/tct-colors-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-indexeddb-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>391</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>391</total_tcn>
- <pkg_name>wearable/tct-indexeddb-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-sandbox-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>72</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>73</total_tcn>
- <pkg_name>common/tct-sandbox-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-camera-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>83</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>83</total_tcn>
- <pkg_name>wearable/tct-camera-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-ui-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>43</auto_tcn>
- <manual_tcn>1</manual_tcn>
- <total_tcn>44</total_tcn>
- <pkg_name>common/tct-ui-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-canvas-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>846</auto_tcn>
- <manual_tcn>18</manual_tcn>
- <total_tcn>864</total_tcn>
- <pkg_name>common/tct-canvas-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-messageport-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>48</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>48</total_tcn>
- <pkg_name>common/tct-messageport-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-testconfig" launcher="WRTLauncher">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>19</manual_tcn>
- <total_tcn>19</total_tcn>
- <pkg_name>common/tct-testconfig-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-selectorslevel1-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>78</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>78</total_tcn>
- <pkg_name>common/tct-selectorslevel1-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-widgetpolicy-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>34</manual_tcn>
- <total_tcn>34</total_tcn>
- <pkg_name>common/tct-widgetpolicy-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-cors-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>10</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>10</total_tcn>
- <pkg_name>common/tct-cors-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-batterystatus-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>23</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>23</total_tcn>
- <pkg_name>common/tct-batterystatus-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-xmlhttprequest-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>202</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>202</total_tcn>
- <pkg_name>wearable/tct-xmlhttprequest-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-maxLength-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">
- <auto_tcn>14</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>14</total_tcn>
- <pkg_name>common/tct-maxLength-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-systeminfo-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>281</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>281</total_tcn>
- <pkg_name>wearable/tct-systeminfo-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-filesystem-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>289</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>289</total_tcn>
- <pkg_name>wearable/tct-filesystem-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-typedarrays-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>80</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>80</total_tcn>
- <pkg_name>common/tct-typedarrays-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-animations-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>24</total_tcn>
- <pkg_name>common/tct-animations-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-badge-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>26</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>26</total_tcn>
- <pkg_name>common/tct-badge-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-vibration-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>2</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>2</total_tcn>
- <pkg_name>common/tct-vibration-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-pagevisibility-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>18</auto_tcn>
- <manual_tcn>2</manual_tcn>
- <total_tcn>20</total_tcn>
- <pkg_name>wearable/tct-pagevisibility-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-stab-wrt-tests" category="Web Runtime">
- <auto_tcn>1</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>1</total_tcn>
- <pkg_name>common/tct-stab-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-text-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>27</auto_tcn>
- <manual_tcn>15</manual_tcn>
- <total_tcn>42</total_tcn>
- <pkg_name>common/tct-text-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-behavior-tests">
- <auto_tcn>0</auto_tcn>
- <manual_tcn>19</manual_tcn>
- <total_tcn>19</total_tcn>
- <pkg_name>wearable/tct-behavior-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webstorage-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>177</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>181</total_tcn>
- <pkg_name>common/tct-webstorage-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webuifw-tests" category="Web UI Framework">
- <auto_tcn>524</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>524</total_tcn>
- <pkg_name>wearable/tct-webuifw-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-download-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>62</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>62</total_tcn>
- <pkg_name>common/tct-download-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-mediaqueries-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>52</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>52</total_tcn>
- <pkg_name>wearable/tct-mediaqueries-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-content-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>230</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>230</total_tcn>
- <pkg_name>common/tct-content-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-gumallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>6</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>6</total_tcn>
- <pkg_name>common/tct-gumallow-w3c-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-systemsetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">
- <auto_tcn>33</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>33</total_tcn>
- <pkg_name>common/tct-systemsetting-tizen-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-video-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>366</auto_tcn>
- <manual_tcn>4</manual_tcn>
- <total_tcn>370</total_tcn>
- <pkg_name>wearable/tct-video-html5-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-backgrounds-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">
- <auto_tcn>541</auto_tcn>
- <manual_tcn>74</manual_tcn>
- <total_tcn>615</total_tcn>
- <pkg_name>wearable/tct-backgrounds-css3-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-pm-wrt-tests" category="Web Runtime">
- <auto_tcn>24</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>24</total_tcn>
- <pkg_name>common/tct-pm-wrt-tests-2.4.zip</pkg_name>
- </suite>
- <suite name="tct-webgl-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">
- <auto_tcn>889</auto_tcn>
- <manual_tcn>0</manual_tcn>
- <total_tcn>889</total_tcn>
- <pkg_name>common/tct-webgl-nonw3c-tests-2.4.zip</pkg_name>
- </suite>
-</ns3:testplan>
-
+<?xml version="1.0" encoding="UTF-8"?>\r
+<ns3:testplan xmlns:ns3="http://www.example.org/plan/" xmlns="" name="Full_wearable" profile="wearable">\r
+ <execute_type>All</execute_type>\r
+ <suite name="tct-sp01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>4</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>4</total_tcn>\r
+ <pkg_name>common/tct-sp01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widget02-w3c-tests" category="W3C/HTML5 APIs">\r
+ <auto_tcn>68</auto_tcn>\r
+ <manual_tcn>63</manual_tcn>\r
+ <total_tcn>131</total_tcn>\r
+ <pkg_name>wearable/tct-widget02-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-jsenhance-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>49</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>49</total_tcn>\r
+ <pkg_name>common/tct-jsenhance-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-audio-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>338</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>339</total_tcn>\r
+ <pkg_name>common/tct-audio-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sp02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>1</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>1</total_tcn>\r
+ <pkg_name>common/tct-sp02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-rt02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-rt02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sound-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>52</auto_tcn>\r
+ <manual_tcn>8</manual_tcn>\r
+ <total_tcn>60</total_tcn>\r
+ <pkg_name>common/tct-sound-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-workers-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>85</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>86</total_tcn>\r
+ <pkg_name>wearable/tct-workers-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ext02-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>8</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>8</total_tcn>\r
+ <pkg_name>common/tct-ext02-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-transitions-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>26</auto_tcn>\r
+ <manual_tcn>5</manual_tcn>\r
+ <total_tcn>31</total_tcn>\r
+ <pkg_name>common/tct-transitions-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-namespace-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>23</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>common/tct-namespace-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-application-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>159</auto_tcn>\r
+ <manual_tcn>6</manual_tcn>\r
+ <total_tcn>165</total_tcn>\r
+ <pkg_name>wearable/tct-application-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-humanactivitymonitor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>47</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>47</total_tcn>\r
+ <pkg_name>common/tct-humanactivitymonitor-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-bluetooth-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>214</auto_tcn>\r
+ <manual_tcn>44</manual_tcn>\r
+ <total_tcn>258</total_tcn>\r
+ <pkg_name>common/tct-bluetooth-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fonts-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>131</manual_tcn>\r
+ <total_tcn>142</total_tcn>\r
+ <pkg_name>common/tct-fonts-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-speech-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>40</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>41</total_tcn>\r
+ <pkg_name>common/tct-speech-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-security-tcs-tests" launcher="WRTLauncher" category="Compliance">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-security-tcs-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ui01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>11</total_tcn>\r
+ <pkg_name>wearable/tct-ui01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-dynamicbox-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>17</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>17</total_tcn>\r
+ <pkg_name>common/tct-dynamicbox-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-animationtiming-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>18</total_tcn>\r
+ <pkg_name>common/tct-animationtiming-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-selectorslevel2-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>30</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>30</total_tcn>\r
+ <pkg_name>common/tct-selectorslevel2-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-2dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>34</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>34</total_tcn>\r
+ <pkg_name>common/tct-2dtransforms-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-forms-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>146</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>146</total_tcn>\r
+ <pkg_name>wearable/tct-forms-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-time-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>470</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>470</total_tcn>\r
+ <pkg_name>wearable/tct-time-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-wgtapi01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">\r
+ <auto_tcn>107</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>107</total_tcn>\r
+ <pkg_name>common/tct-wgtapi01-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-fileapi-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>98</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>101</total_tcn>\r
+ <pkg_name>wearable/tct-fileapi-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-capability-tests" launcher="WRTLauncher" category="Compliance">\r
+ <auto_tcn>15</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>15</total_tcn>\r
+ <pkg_name>common/tct-capability-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ext01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>2</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>2</total_tcn>\r
+ <pkg_name>wearable/tct-ext01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediacapture-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>7</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>7</total_tcn>\r
+ <pkg_name>common/tct-mediacapture-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-exif-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>63</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>63</total_tcn>\r
+ <pkg_name>common/tct-exif-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-csp-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>133</auto_tcn>\r
+ <manual_tcn>78</manual_tcn>\r
+ <total_tcn>211</total_tcn>\r
+ <pkg_name>common/tct-csp-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sensor-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>119</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>119</total_tcn>\r
+ <pkg_name>common/tct-sensor-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-privilege-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>142</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>142</total_tcn>\r
+ <pkg_name>wearable/tct-privilege-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-power-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>50</auto_tcn>\r
+ <manual_tcn>6</manual_tcn>\r
+ <total_tcn>56</total_tcn>\r
+ <pkg_name>common/tct-power-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-appwgt-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>7</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>7</total_tcn>\r
+ <pkg_name>common/tct-appwgt-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-privilege-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>66</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>66</total_tcn>\r
+ <pkg_name>common/tct-privilege-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediakey-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>11</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>15</total_tcn>\r
+ <pkg_name>common/tct-mediakey-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-alarm-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>61</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>61</total_tcn>\r
+ <pkg_name>common/tct-alarm-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-touchevent-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>16</auto_tcn>\r
+ <manual_tcn>7</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>common/tct-touchevent-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-wgtapi02-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>34</manual_tcn>\r
+ <total_tcn>34</total_tcn>\r
+ <pkg_name>common/tct-wgtapi02-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-deviceorientation-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>37</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>37</total_tcn>\r
+ <pkg_name>common/tct-deviceorientation-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-archive-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>106</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>106</total_tcn>\r
+ <pkg_name>common/tct-archive-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webmessaging-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>175</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>175</total_tcn>\r
+ <pkg_name>wearable/tct-webmessaging-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-package-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>54</auto_tcn>\r
+ <manual_tcn>12</manual_tcn>\r
+ <total_tcn>66</total_tcn>\r
+ <pkg_name>common/tct-package-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-notification-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>85</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>85</total_tcn>\r
+ <pkg_name>wearable/tct-notification-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-tizen-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>81</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>81</total_tcn>\r
+ <pkg_name>common/tct-tizen-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-rt01-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>12</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>12</total_tcn>\r
+ <pkg_name>common/tct-rt01-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widget01-w3c-tests" launcher="WRTLauncher -iu" category="W3C/HTML5 APIs">\r
+ <auto_tcn>155</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>155</total_tcn>\r
+ <pkg_name>wearable/tct-widget01-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-svg-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>3</auto_tcn>\r
+ <manual_tcn>9</manual_tcn>\r
+ <total_tcn>12</total_tcn>\r
+ <pkg_name>common/tct-svg-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-3dtransforms-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>32</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>32</total_tcn>\r
+ <pkg_name>common/tct-3dtransforms-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-geoallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>209</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>212</total_tcn>\r
+ <pkg_name>common/tct-geoallow-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sessionhistory-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>148</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>149</total_tcn>\r
+ <pkg_name>common/tct-sessionhistory-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-websocket-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>268</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>268</total_tcn>\r
+ <pkg_name>wearable/tct-websocket-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-flexiblebox-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>25</auto_tcn>\r
+ <manual_tcn>28</manual_tcn>\r
+ <total_tcn>53</total_tcn>\r
+ <pkg_name>common/tct-flexiblebox-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-extra-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>544</auto_tcn>\r
+ <manual_tcn>25</manual_tcn>\r
+ <total_tcn>569</total_tcn>\r
+ <pkg_name>wearable/tct-extra-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-dnd-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>6</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>6</total_tcn>\r
+ <pkg_name>common/tct-dnd-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-geodeny-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>3</manual_tcn>\r
+ <total_tcn>3</total_tcn>\r
+ <pkg_name>common/tct-geodeny-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-colors-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>46</auto_tcn>\r
+ <manual_tcn>29</manual_tcn>\r
+ <total_tcn>75</total_tcn>\r
+ <pkg_name>common/tct-colors-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-indexeddb-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>391</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>391</total_tcn>\r
+ <pkg_name>wearable/tct-indexeddb-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-sandbox-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>72</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>73</total_tcn>\r
+ <pkg_name>common/tct-sandbox-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-camera-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>83</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>83</total_tcn>\r
+ <pkg_name>wearable/tct-camera-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-ui-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>43</auto_tcn>\r
+ <manual_tcn>1</manual_tcn>\r
+ <total_tcn>44</total_tcn>\r
+ <pkg_name>common/tct-ui-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-canvas-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>846</auto_tcn>\r
+ <manual_tcn>18</manual_tcn>\r
+ <total_tcn>864</total_tcn>\r
+ <pkg_name>common/tct-canvas-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-messageport-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>48</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>48</total_tcn>\r
+ <pkg_name>common/tct-messageport-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-testconfig" launcher="WRTLauncher">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>19</manual_tcn>\r
+ <total_tcn>19</total_tcn>\r
+ <pkg_name>common/tct-testconfig-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-selectorslevel1-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>78</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>78</total_tcn>\r
+ <pkg_name>common/tct-selectorslevel1-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-widgetpolicy-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>34</manual_tcn>\r
+ <total_tcn>34</total_tcn>\r
+ <pkg_name>common/tct-widgetpolicy-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-cors-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>10</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>10</total_tcn>\r
+ <pkg_name>common/tct-cors-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-batterystatus-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>23</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>23</total_tcn>\r
+ <pkg_name>common/tct-batterystatus-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-xmlhttprequest-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>202</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>202</total_tcn>\r
+ <pkg_name>wearable/tct-xmlhttprequest-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-maxLength-wrt-tests" launcher="WRTLauncher -iu" category="Web Runtime">\r
+ <auto_tcn>14</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>14</total_tcn>\r
+ <pkg_name>common/tct-maxLength-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-systeminfo-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>281</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>281</total_tcn>\r
+ <pkg_name>wearable/tct-systeminfo-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-filesystem-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>289</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>289</total_tcn>\r
+ <pkg_name>wearable/tct-filesystem-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-typedarrays-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>80</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>80</total_tcn>\r
+ <pkg_name>common/tct-typedarrays-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-animations-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>24</total_tcn>\r
+ <pkg_name>common/tct-animations-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-badge-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>26</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>26</total_tcn>\r
+ <pkg_name>common/tct-badge-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-vibration-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>2</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>2</total_tcn>\r
+ <pkg_name>common/tct-vibration-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-pagevisibility-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>18</auto_tcn>\r
+ <manual_tcn>2</manual_tcn>\r
+ <total_tcn>20</total_tcn>\r
+ <pkg_name>wearable/tct-pagevisibility-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-stab-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>1</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>1</total_tcn>\r
+ <pkg_name>common/tct-stab-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-text-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>27</auto_tcn>\r
+ <manual_tcn>15</manual_tcn>\r
+ <total_tcn>42</total_tcn>\r
+ <pkg_name>common/tct-text-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-behavior-tests">\r
+ <auto_tcn>0</auto_tcn>\r
+ <manual_tcn>19</manual_tcn>\r
+ <total_tcn>19</total_tcn>\r
+ <pkg_name>wearable/tct-behavior-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webstorage-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>177</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>181</total_tcn>\r
+ <pkg_name>common/tct-webstorage-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webuifw-tests" category="Web UI Framework">\r
+ <auto_tcn>524</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>524</total_tcn>\r
+ <pkg_name>wearable/tct-webuifw-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-download-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>62</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>62</total_tcn>\r
+ <pkg_name>common/tct-download-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-mediaqueries-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>52</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>52</total_tcn>\r
+ <pkg_name>wearable/tct-mediaqueries-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-content-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>230</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>230</total_tcn>\r
+ <pkg_name>common/tct-content-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-gumallow-w3c-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>6</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>6</total_tcn>\r
+ <pkg_name>common/tct-gumallow-w3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-systemsetting-tizen-tests" launcher="WRTLauncher" category="Tizen Web Device APIs">\r
+ <auto_tcn>33</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>33</total_tcn>\r
+ <pkg_name>common/tct-systemsetting-tizen-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-video-html5-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>366</auto_tcn>\r
+ <manual_tcn>4</manual_tcn>\r
+ <total_tcn>370</total_tcn>\r
+ <pkg_name>wearable/tct-video-html5-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-backgrounds-css3-tests" launcher="WRTLauncher" category="W3C/HTML5 APIs">\r
+ <auto_tcn>541</auto_tcn>\r
+ <manual_tcn>74</manual_tcn>\r
+ <total_tcn>615</total_tcn>\r
+ <pkg_name>wearable/tct-backgrounds-css3-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-pm-wrt-tests" category="Web Runtime">\r
+ <auto_tcn>24</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>24</total_tcn>\r
+ <pkg_name>common/tct-pm-wrt-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+ <suite name="tct-webgl-nonw3c-tests" launcher="WRTLauncher" category="Supplementary APIs">\r
+ <auto_tcn>889</auto_tcn>\r
+ <manual_tcn>0</manual_tcn>\r
+ <total_tcn>889</total_tcn>\r
+ <pkg_name>common/tct-webgl-nonw3c-tests-2.4.zip</pkg_name>\r
+ </suite>\r
+</ns3:testplan>\r
+\r
-@charset "UTF-8";
-/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
- {
- margin: 0;
- padding: 0;
- border: 0;
- font-weight: inherit;
- font-style: inherit;
- font-size: 0.96em;
- font-family: arial;
- vertical-align: baseline;
-}
-
-#title td, #btc td{
- margin: 0;
- padding: 0;
- border: 0;
- font-weight: inherit;
- font-style: inherit;
- font-size: 0.96em;
- font-family: arial;
- vertical-align: baseline;
-}
-
-td.Ratio {
- text-align: left;
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- vertical-align: middle;
-}
-
-th.Ratio {
- width: 400px;
-}
-
-#testcasepage p {
- text-align: left;
-}
-
-#suite_title {
- text-align: left;
-}
-
-#btc {
- text-align: right;
-}
-
-#btc table {
- position: absolute;
- right: 0px;
- width: 600px;
-}
-
-#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
-}
-
-#testcasepage th,#testcasepage td {
- text-align: left;
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- vertical-align: middle;
-}
-
-#cases table {
- width: 101%;
-}
-
-#cases td {
- border-left: 0px;
- font-weight: normal;
- border-bottom: 0px;
-}
-
-#suite_summary table {
- width: 100%;
-}
-
-
-#overview table {
- width: 101%;
-}
-
-#overview table, #overview td, #overview tr {
- border-left: none;
- border-bottom: none;
- border-right: none;
- vertical-align: top;
-}
-
-#overview td{
- width: 50%;
-}
-
-#capability table {
- width: 50%;
-}
-
-#fail_cases table {
- width: 101%;
-}
-
-#title table {
- width: 101%;
-}
-
-#device table {
- width: 100%;
-}
-
-#summary table {
- width: 100%;
-}
-
-#testcasepage th {
- border-bottom: 1px solid #000;
- background-color: #AAAAAA;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
-}
-
-#summary th:last-child,#summary td:last-child, #device th:last-child,#device td:last-child, #suite_summary th:last-child,#suite_summary td:last-child,#cases th:last-child,#cases td:last-child,#capability th:last-child,#capability td:last-child {
- border-right: 1px solid #000;
-}
-
-#testcasepage td {
- font-weight: normal;
-}
-
-#summary td, #device td, #capability td, #suite_summary td, #cases td{
- border-left: 1px solid;
- font-weight: normal;
- border-bottom: 1px solid;
-}
-
-#testcasepage td.yellow_rate {
- background-color: #ffcc00;
-}
-
-#testcasepage td.green_rate {
- background-color: #1E90FF;
-}
-
-#testcasepage td.dgreen_rate {
- background-color: #339933;
-}
-
-#testcasepage td.red_rate {
- background-color: #FF3333;
-}
-
-#testcasepage td.orange_rate {
- background-color: #FFA500;
-}
-
-#testcasepage td.gray_rate {
- background-color: #AAAAAA;
-}
-
-#title table,#title tr,#title td {
- border-left: none;
- border-bottom: none;
- text-align: center;
-}
-
-#title td:last-child {
- border-right: none;
-}
-
-#testcasepage h1 {
- font-size: 2em;
- font-family: Arial, sans-serif;
- font-weight: bold;
- line-height: 1;
- color: #000;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
- font-weight: bold;
-}
-
-#goTopBtn {
- right: 0px;
- bottom: 0px;
- position: fixed; +
- position: absolute;
- top: expression(parseInt(document.body.scrollTop)+document.body.clientHeight-40
- );
-}
+@charset "UTF-8";\r
+/* CSS Document */\r
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td\r
+ {\r
+ margin: 0;\r
+ padding: 0;\r
+ border: 0;\r
+ font-weight: inherit;\r
+ font-style: inherit;\r
+ font-size: 0.96em;\r
+ font-family: arial;\r
+ vertical-align: baseline;\r
+}\r
+\r
+#title td, #btc td{\r
+ margin: 0;\r
+ padding: 0;\r
+ border: 0;\r
+ font-weight: inherit;\r
+ font-style: inherit;\r
+ font-size: 0.96em;\r
+ font-family: arial;\r
+ vertical-align: baseline;\r
+}\r
+\r
+td.Ratio {\r
+ text-align: left;\r
+ font-weight: normal;\r
+ padding: 4px 10px 4px 5px;\r
+ vertical-align: middle;\r
+}\r
+\r
+th.Ratio {\r
+ width: 400px;\r
+}\r
+\r
+#testcasepage p {\r
+ text-align: left;\r
+}\r
+\r
+#suite_title {\r
+ text-align: left;\r
+}\r
+\r
+#btc {\r
+ text-align: right;\r
+}\r
+\r
+#btc table {\r
+ position: absolute;\r
+ right: 0px;\r
+ width: 600px;\r
+}\r
+\r
+#testcasepage table {\r
+ border-collapse: separate;\r
+ border-spacing: 0;\r
+ margin-bottom: 1.4em;\r
+ vertical-align: middle;\r
+}\r
+\r
+#testcasepage th,#testcasepage td {\r
+ text-align: left;\r
+ font-weight: normal;\r
+ padding: 4px 10px 4px 5px;\r
+ vertical-align: middle;\r
+}\r
+\r
+#cases table {\r
+ width: 101%;\r
+}\r
+\r
+#cases td {\r
+ border-left: 0px;\r
+ font-weight: normal;\r
+ border-bottom: 0px;\r
+}\r
+\r
+#suite_summary table {\r
+ width: 100%;\r
+}\r
+\r
+\r
+#overview table {\r
+ width: 101%;\r
+}\r
+\r
+#overview table, #overview td, #overview tr {\r
+ border-left: none;\r
+ border-bottom: none;\r
+ border-right: none;\r
+ vertical-align: top;\r
+}\r
+\r
+#overview td{\r
+ width: 50%;\r
+}\r
+\r
+#capability table {\r
+ width: 50%;\r
+}\r
+\r
+#fail_cases table {\r
+ width: 101%;\r
+}\r
+\r
+#title table {\r
+ width: 101%;\r
+}\r
+\r
+#device table {\r
+ width: 100%;\r
+}\r
+\r
+#summary table {\r
+ width: 100%;\r
+}\r
+\r
+#testcasepage th {\r
+ border-bottom: 1px solid #000;\r
+ background-color: #AAAAAA;\r
+ border-left: 1px solid #000;\r
+ border-top: 1px solid #000;\r
+ color: #000;\r
+ font-weight: bold;\r
+ vertical-align: bottom;\r
+}\r
+\r
+#summary th:last-child,#summary td:last-child, #device th:last-child,#device td:last-child, #suite_summary th:last-child,#suite_summary td:last-child,#cases th:last-child,#cases td:last-child,#capability th:last-child,#capability td:last-child {\r
+ border-right: 1px solid #000;\r
+}\r
+\r
+#testcasepage td {\r
+ font-weight: normal;\r
+}\r
+\r
+#summary td, #device td, #capability td, #suite_summary td, #cases td{\r
+ border-left: 1px solid;\r
+ font-weight: normal;\r
+ border-bottom: 1px solid;\r
+}\r
+\r
+#testcasepage td.yellow_rate {\r
+ background-color: #ffcc00;\r
+}\r
+\r
+#testcasepage td.green_rate {\r
+ background-color: #1E90FF;\r
+}\r
+\r
+#testcasepage td.dgreen_rate {\r
+ background-color: #339933;\r
+}\r
+\r
+#testcasepage td.red_rate {\r
+ background-color: #FF3333;\r
+}\r
+\r
+#testcasepage td.orange_rate {\r
+ background-color: #FFA500;\r
+}\r
+\r
+#testcasepage td.gray_rate {\r
+ background-color: #AAAAAA;\r
+}\r
+\r
+#title table,#title tr,#title td {\r
+ border-left: none;\r
+ border-bottom: none;\r
+ text-align: center;\r
+}\r
+\r
+#title td:last-child {\r
+ border-right: none;\r
+}\r
+\r
+#testcasepage h1 {\r
+ font-size: 2em;\r
+ font-family: Arial, sans-serif;\r
+ font-weight: bold;\r
+ line-height: 1;\r
+ color: #000;\r
+ margin-bottom: 0.75em;\r
+ padding-top: 0.25em;\r
+ font-weight: bold;\r
+}\r
+\r
+#goTopBtn {\r
+ right: 0px;\r
+ bottom: 0px;\r
+ position: fixed; +\r
+ position: absolute;\r
+ top: expression(parseInt(document.body.scrollTop)+document.body.clientHeight-40\r
+ );\r
+}\r
--- /dev/null
+Subproject commit 46297e8c5bd0ebf1c1c7e50b4b0d9fbd4165d412
DLOG_CLEAR = "sdb -s %s shell dlogutil -c"
DLOG_WRT = "sdb -s %s shell dlogutil -v threadtime"
-SDB_COMMAND_RTN = "sdb -s %s shell '%s; echo returncode=$?'"
+SDB_COMMAND_RTN = "sdb -s %s shell '%s; echo returncode=$?'"
# redefine constants for windows
if platform.system() == "Windows":
WRT_START_STR = 'sdb -s %s shell "wrt-launcher -s %s; echo returncode=$?"'
- SDB_COMMAND_RTN = 'sdb -s %s shell "%s; echo returncode=$?"'
+ SDB_COMMAND_RTN = 'sdb -s %s shell "%s; echo returncode=$?"'
+
def debug_trace(cmdline, logfile):
global debug_flag, metux
wbuffile = open(logfile, "wb")
import subprocess
+
exit_code = None
proc = subprocess.Popen(args=cmdline,
shell=True,
class TizenMobile:
-
"""
Implementation for transfer data
between Host and Tizen Mobile Device
if self.deviceid and self.deviceid.find('NE') > -1:
self.is_NE = int(self.deviceid.split(':')[1].split('_')[0])
self.deviceid = self.deviceid.split('_')[1]
-
+
self._wrt = False
def is_NE_mode(self):
def launch_stub(self, stub_app, stub_port, debug_opt=""):
cmdline = "/opt/home/developer/%s --port:%s %s; sleep 2s" \
- % (stub_app, stub_port, debug_opt)
+ % (stub_app, stub_port, debug_opt)
exit_code, ret = self.shell_cmd(cmdline)
time.sleep(2)
boutput=False,
stdout_file=None,
stderr_file=None):
-
+
cmdline = SDB_COMMAND_RTN % (
self.deviceid, cmd)
return shell_command_ext(cmdline, timeout, boutput, \
- stdout_file, stderr_file)
+ stdout_file, stderr_file)
def get_device_info(self):
"""get tizen device inforamtion"""
device_file = DEVICE_SUITE_TARGET_30 + '/Documents/tct/buildinfo.xml'
elif _tizenV and _tizenV.find("7.5") > -1:
device_file = DEVICE_SUITE_TARGET_30 + '/Documents/tct/buildinfo.xml'
+ elif _tizenV and _tizenV.find("8.0") > -1:
+ device_file = DEVICE_SUITE_TARGET_30 + '/Documents/tct/buildinfo.xml'
else:
device_file = DEVICE_SUITE_TARGET_24 + '/Documents/tct/buildinfo.xml'
build_info['model'] = ''
if self.download_file(device_file, builfinfo_file) \
- and os.path.exists(builfinfo_file):
+ and os.path.exists(builfinfo_file):
root = etree.parse(builfinfo_file).getroot()
for element in root.findall("buildinfo"):
if element is not None:
if element.get("name").lower() == 'buildversion':
- child = etree.Element.getchildren(element)
+ child = list(element)
if child and child[0].text:
buildid = child[0].text
build_info['buildid'] = buildid
if element.get("name").lower() == 'manufacturer':
- child = etree.Element.getchildren(element)
+ child = list(element)
if child and child[0].text:
manufacturer = child[0].text
build_info['manufacturer'] = manufacturer
if element.get("name").lower() == 'model':
- child = etree.Element.getchildren(element)
+ child = list(element)
if child and child[0].text:
model = child[0].text
build_info['model'] = model
os.remove(builfinfo_file)
return build_info
-
def get_server_url(self, remote_port="8000"):
"""forward request a host tcp port to targe tcp port"""
if remote_port is None:
break
host_port = str(inner_port)
cmd = "sdb -s %s forward tcp:%s tcp:%s" % \
- (self.deviceid, host_port, remote_port)
+ (self.deviceid, host_port, remote_port)
exit_code, ret = shell_command(cmd)
url_forward = "http://%s:%s" % (host, host_port)
return url_forward
def download_file(self, remote_path, local_path):
"""download file from device"""
-
+
local_path_dir = os.path.dirname(local_path)
if not os.path.exists(local_path_dir):
os.makedirs(local_path_dir)
return True
def get_launcher_opt(self, test_launcher, test_suite, test_set, \
- fuzzy_match, auto_iu):
+ fuzzy_match, auto_iu):
"""
get test option dict
"""
cmd1 = WRT_SMOCK_STR % (self.deviceid, test_app_id.split('.')[0])
cmd2 = WRT_SMOCK_REV_STR % \
- (self.deviceid, test_app_id.split('.')[0])
+ (self.deviceid, test_app_id.split('.')[0])
shell_command(cmd1)
shell_command(cmd2)
cmd = RPM_LIST % self.deviceid
exit_code, ret = shell_command(cmd)
return ret
-
+
def start_debug(self, dlogfile):
global debug_flag, metux
if self.is_NE_mode():
- return
+ return
debug_flag = True
metux = threading.Lock()
cmdline = DLOG_CLEAR % self.deviceid
def stop_debug(self):
global debug_flag, metux
if self.is_NE_mode():
- return
+ return
metux.acquire()
debug_flag = False
-= XSLT style for Test Case and Test Result =
-
-== Files structure ==
-
- readme.txt
- test_definition.xsd //The schema of test definition
- tests.css // CSS style for showing test cases and results
- testresult.xsl
- testcase.xsl
- tests.xml //example of test cases
- result.xml //example of test result
-
-
- == Applying the style ==
-
- === Update in definition and result XML ===
-
- For applying this style for the definition XML of test cases, please add below statement before the root element of XML (the tag "test_definition").
-
- <?xml-stylesheet type="text/xsl" href="./testcase.xsl"?>
-
- as below:
-
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet type="text/xsl" href="./testcase.xsl"?>
-<test_definition>
-
-For applying this style for the test-result XML, please add below statement before the root element of XML (the tag "test_definition").
-<?xml-stylesheet type="text/xsl" href="./testresult.xsl"?>
-
-as below:
-
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet type="text/xsl" href="./testresult.xsl"?>
-<test_definition>
-
-=== Deploy XSLT and CSS style ===
-
-For our test package, below 3 files should be added in each test package.
-
- tests.css
- testresult.xsl
- testcase.xsl
-
-For instance, add them under the test package "webapi-tizen-alarm-tests".
- ©¸©¤webapi-tizen-alarm-tests
- ©¸©¤...
- ©¸©¤...
- ©¸tests.css
- ©¸testresult.xsl
- ©¸testcase.xsl
- ©¸tests.xml
- ©¸...
+= XSLT style for Test Case and Test Result =\r
+\r
+== Files structure ==\r
+\r
+ readme.txt\r
+ test_definition.xsd //The schema of test definition\r
+ tests.css // CSS style for showing test cases and results\r
+ testresult.xsl\r
+ testcase.xsl\r
+ tests.xml //example of test cases\r
+ result.xml //example of test result\r
+ \r
+ \r
+ == Applying the style ==\r
+ \r
+ === Update in definition and result XML ===\r
+ \r
+ For applying this style for the definition XML of test cases, please add below statement before the root element of XML (the tag "test_definition").\r
+ \r
+ <?xml-stylesheet type="text/xsl" href="./testcase.xsl"?>\r
+ \r
+ as below: \r
+ \r
+<?xml version="1.0" encoding="UTF-8"?>\r
+<?xml-stylesheet type="text/xsl" href="./testcase.xsl"?>\r
+<test_definition>\r
+\r
+For applying this style for the test-result XML, please add below statement before the root element of XML (the tag "test_definition").\r
+<?xml-stylesheet type="text/xsl" href="./testresult.xsl"?>\r
+\r
+as below:\r
+\r
+<?xml version="1.0" encoding="UTF-8"?>\r
+<?xml-stylesheet type="text/xsl" href="./testresult.xsl"?>\r
+<test_definition>\r
+\r
+=== Deploy XSLT and CSS style ===\r
+\r
+For our test package, below 3 files should be added in each test package. \r
+\r
+ tests.css \r
+ testresult.xsl\r
+ testcase.xsl\r
+ \r
+For instance, add them under the test package "webapi-tizen-alarm-tests".\r
+ ©¸©¤webapi-tizen-alarm-tests\r
+ ©¸©¤...\r
+ ©¸©¤...\r
+ ©¸tests.css \r
+ ©¸testresult.xsl\r
+ ©¸testcase.xsl\r
+ ©¸tests.xml\r
+ ©¸...\r
-<?xml version="1.0" encoding="UTF-8"?>
-<test_definition name="http://tempuri.org" type=""
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="test_definition.xsd">
- <environment device_id="generic/sdk/generic:4.0.4/MR1/302030:eng/test-keys"
- device_model="unknown" device_name="MR8" firmware_version="4.0.4"
- host="zhongqing-dev.sh.intel.com (Linux - 2.6.38.6-26.rc1.fc15.i686)"
- os_version="4.0.4" resolution="1280*800" screen_size="250*150" cts_version="2.3.0-3">
- <other> Here is a Long String for testing ~~~~~~~~~~~~~~~~~~~
- Here is a Long String for testing ~~~~~~~~~~~~~~~~~~~
- Here is a Long String for testing ~~~~~~~~~~~~~~~~~~~
- </other>
- </environment>
- <summary test_plan_name="tmp_test_1">
- <start_at>Fri Jul 13 04:04:59 CST 2012</start_at>
- <end_at>Fri Jul 13 05:01:53 CST 2012</end_at>
- </summary>
- <suite name="webapi-tizen-alarm-tests" type="">
- <set name="Alarm1">
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_constructor_delay" priority="P1"
- purpose="check AlarmRelative attribute when create with delay"
- status="approved" type="compliance" result="PASS">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative create constructor with delay
- </step_desc>
- <expected>AlarmRelative create succeed with constructor with
- delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_constructor_delay.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>PASS</actual_result>
- <start>Sat Jan 01 2000 13:43:44 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_get" priority="P1"
- purpose="check AlarmManager method removeAll: without input attribute"
- status="approved" type="compliance" result="BLOCK">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method get: default check
- </step_desc>
- <expected>AlarmManager method get: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_get.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>BLOCK</actual_result>
- <start>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_attri_date_01" priority="P1"
- purpose="check AlarmAbsolute attribute when create with date"
- status="approved" type="compliance">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute attribute when create with date
- </step_desc>
- <expected>AlarmAbsolute attribute return correct value when
- create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=1
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>N/R</actual_result>
- <start>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_add_rel" priority="P1"
- purpose="check AlarmManager method add: add relative alarm" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method add: add relative alarm
- </step_desc>
- <expected>AlarmManager method add: add relative alarm succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_rel.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_attri_delay_02" priority="P1"
- purpose="check AlarmAbsolute attribute when create with period"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative attribute when create with delay
- </step_desc>
- <expected>AlarmRelative attribute return correct value when
- create succeed with with delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=2
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_getAll" priority="P1"
- purpose="check AlarmManager method getAll: default check" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method getAll: default check
- </step_desc>
- <expected>AlarmManager method getAll: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_getAll.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:39 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_attri_date_03" priority="P1"
- purpose="check AlarmAbsolute attribute when create with date"
- status="approved" type="compliance" result="Blocked">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute attribute when create with date
- </step_desc>
- <expected>AlarmAbsolute attribute return correct value when
- create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=3
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:39 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:41 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_getNextScheduledDate_date" priority="P1"
- purpose="check AlarmAbsolute method getNextScheduledDate when create with date"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute method getNextScheduledDate when
- create with date
- </step_desc>
- <expected>AlarmAbsolute method getNextScheduledDate return
- correct value when create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_getNextScheduledDate_date.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:41 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:57 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_constructor_date" priority="P1"
- purpose="check AlarmAbsolute create constructor with date" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute create constructor with date
- </step_desc>
- <expected>AlarmAbsolute create succeed with constructor with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_constructor_date.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:57 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:13 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_getRemainingSeconds_delay" priority="P1"
- purpose="check AlarmRelative method getNextScheduleddelay when create with delay"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative method getNextScheduleddelay when
- create with delay
- </step_desc>
- <expected>AlarmRelative method getNextScheduleddelay return
- correct value when create succeed with with delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_getRemainingSeconds_delay.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:13 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:30 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_attri_delay_01" priority="P1"
- purpose="check AlarmAbsolute attribute when create with period"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative attribute when create with delay
- </step_desc>
- <expected>AlarmRelative attribute return correct value when
- create succeed with with delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=1
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:30 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:32 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_add_abs" priority="P1"
- purpose="check AlarmManager method add: add absolute alarm" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method add: add absolute alarm
- </step_desc>
- <expected>AlarmManager method add: add absolute alarm succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_abs.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:32 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:48 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_attri_date_02" priority="P1"
- purpose="check AlarmAbsolute attribute when create with date"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute attribute when create with date
- </step_desc>
- <expected>AlarmAbsolute attribute return correct value when
- create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=2
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:48 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:50 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_removeAll" priority="P1"
- purpose="check AlarmManager method removeAll: default check" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method removeAll: default check
- </step_desc>
- <expected>AlarmManager method removeAll: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_removeAll.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:50 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:06 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_remove" priority="P1"
- purpose="check AlarmManager method remove: default check" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method remove: default check
- </step_desc>
- <expected>AlarmManager method remove: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_remove.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:06 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:22 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManagerObject_exist" priority="P1"
- purpose="check AlarmManagerObject existance" status="approved" type="compliance"
- result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManagerObject exist</step_desc>
- <expected>AlarmManagerObject exist</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManagerObject_exist.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:22 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:38 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_const_check_01" priority="P1"
- purpose="Check AlarmManager constants:PERIOD_MINUTE" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Check AlarmManager constants:</step_desc>
- <expected>AlarmManager constants value is correct:</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=1
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:38 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:40 GMT+0900 (KST)</end>
- <stdout>Can't find variable: tizen</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_const_check_02" priority="P1"
- purpose="Check AlarmManager constants:PERIOD_HOUR" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Check AlarmManager constants:</step_desc>
- <expected>AlarmManager constants value is correct:</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=2
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:40 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:42 GMT+0900 (KST)</end>
- <stdout>Can't find variable: tizen</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_const_check_03" priority="P1"
- purpose="Check AlarmManager constants:PERIOD_DAY" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Check AlarmManager constants:</step_desc>
- <expected>AlarmManager constants value is correct:</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=3
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:42 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:44 GMT+0900 (KST)</end>
- <stdout>Can't find variable: tizen</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_const_check_04" priority="P1"
- purpose="Check AlarmManager constants:PERIOD_WEEK" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Check AlarmManager constants:</step_desc>
- <expected>AlarmManager constants value is correct:</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=4
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:44 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:46 GMT+0900 (KST)</end>
- <stdout>Can't find variable: tizen</stdout>
- </result_info>
- </testcase>
- </set>
- <set name="Alarm">
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_constructor_delay" priority="P1"
- purpose="check AlarmRelative attribute when create with delay"
- status="approved" type="compliance" result="PASS">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative create constructor with delay
- </step_desc>
- <expected>AlarmRelative create succeed with constructor with
- delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_constructor_delay.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>PASS</actual_result>
- <start>Sat Jan 01 2000 13:43:44 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_get" priority="P1"
- purpose="check AlarmManager method removeAll: without input attribute"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method get: default check
- </step_desc>
- <expected>AlarmManager method get: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_get.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_attri_date_01" priority="P1"
- purpose="check AlarmAbsolute attribute when create with date"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute attribute when create with date
- </step_desc>
- <expected>AlarmAbsolute attribute return correct value when
- create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=1
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_add_rel" priority="P1"
- purpose="check AlarmManager method add: add relative alarm" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method add: add relative alarm
- </step_desc>
- <expected>AlarmManager method add: add relative alarm succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_rel.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_attri_delay_02" priority="P1"
- purpose="check AlarmAbsolute attribute when create with period"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative attribute when create with delay
- </step_desc>
- <expected>AlarmRelative attribute return correct value when
- create succeed with with delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=2
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- </set>
- </suite>
- <suite name="webapi-tizen-alarm-tests1" type="">
- <set name="Alarm4">
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_constructor_delay" priority="P1"
- purpose="check AlarmRelative attribute when create with delay"
- status="approved" type="compliance" result="PASS">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative create constructor with delay
- </step_desc>
- <expected>AlarmRelative create succeed with constructor with
- delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_constructor_delay.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>PASS</actual_result>
- <start>Sat Jan 01 2000 13:43:44 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_get" priority="P1"
- purpose="check AlarmManager method removeAll: without input attribute"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method get: default check
- </step_desc>
- <expected>AlarmManager method get: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_get.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_attri_date_01" priority="P1"
- purpose="check AlarmAbsolute attribute when create with date"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute attribute when create with date
- </step_desc>
- <expected>AlarmAbsolute attribute return correct value when
- create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=1
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_add_rel" priority="P1"
- purpose="check AlarmManager method add: add relative alarm" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method add: add relative alarm
- </step_desc>
- <expected>AlarmManager method add: add relative alarm succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_rel.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_attri_delay_02" priority="P1"
- purpose="check AlarmAbsolute attribute when create with period"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative attribute when create with delay
- </step_desc>
- <expected>AlarmRelative attribute return correct value when
- create succeed with with delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=2
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_getAll" priority="P1"
- purpose="check AlarmManager method getAll: default check" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method getAll: default check
- </step_desc>
- <expected>AlarmManager method getAll: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_getAll.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:39 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_attri_date_03" priority="P1"
- purpose="check AlarmAbsolute attribute when create with date"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute attribute when create with date
- </step_desc>
- <expected>AlarmAbsolute attribute return correct value when
- create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=3
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:39 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:41 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_getNextScheduledDate_date" priority="P1"
- purpose="check AlarmAbsolute method getNextScheduledDate when create with date"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute method getNextScheduledDate when
- create with date
- </step_desc>
- <expected>AlarmAbsolute method getNextScheduledDate return
- correct value when create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_getNextScheduledDate_date.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:41 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:57 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_constructor_date" priority="P1"
- purpose="check AlarmAbsolute create constructor with date" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute create constructor with date
- </step_desc>
- <expected>AlarmAbsolute create succeed with constructor with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_constructor_date.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:57 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:13 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_getRemainingSeconds_delay" priority="P1"
- purpose="check AlarmRelative method getNextScheduleddelay when create with delay"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative method getNextScheduleddelay when
- create with delay
- </step_desc>
- <expected>AlarmRelative method getNextScheduleddelay return
- correct value when create succeed with with delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_getRemainingSeconds_delay.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:13 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:30 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_attri_delay_01" priority="P1"
- purpose="check AlarmAbsolute attribute when create with period"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative attribute when create with delay
- </step_desc>
- <expected>AlarmRelative attribute return correct value when
- create succeed with with delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=1
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:30 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:32 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_add_abs" priority="P1"
- purpose="check AlarmManager method add: add absolute alarm" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method add: add absolute alarm
- </step_desc>
- <expected>AlarmManager method add: add absolute alarm succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_abs.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:32 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:48 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_attri_date_02" priority="P1"
- purpose="check AlarmAbsolute attribute when create with date"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute attribute when create with date
- </step_desc>
- <expected>AlarmAbsolute attribute return correct value when
- create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=2
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:48 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:45:50 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_removeAll" priority="P1"
- purpose="check AlarmManager method removeAll: default check" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method removeAll: default check
- </step_desc>
- <expected>AlarmManager method removeAll: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_removeAll.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:45:50 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:06 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_remove" priority="P1"
- purpose="check AlarmManager method remove: default check" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method remove: default check
- </step_desc>
- <expected>AlarmManager method remove: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_remove.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:06 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:22 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManagerObject_exist" priority="P1"
- purpose="check AlarmManagerObject existance" status="approved" type="compliance"
- result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManagerObject exist</step_desc>
- <expected>AlarmManagerObject exist</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManagerObject_exist.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:22 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:38 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_const_check_01" priority="P1"
- purpose="Check AlarmManager constants:PERIOD_MINUTE" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Check AlarmManager constants:</step_desc>
- <expected>AlarmManager constants value is correct:</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=1
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:38 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:40 GMT+0900 (KST)</end>
- <stdout>Can't find variable: tizen</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_const_check_02" priority="P1"
- purpose="Check AlarmManager constants:PERIOD_HOUR" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Check AlarmManager constants:</step_desc>
- <expected>AlarmManager constants value is correct:</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=2
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:40 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:42 GMT+0900 (KST)</end>
- <stdout>Can't find variable: tizen</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_const_check_03" priority="P1"
- purpose="Check AlarmManager constants:PERIOD_DAY" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Check AlarmManager constants:</step_desc>
- <expected>AlarmManager constants value is correct:</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=3
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:42 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:44 GMT+0900 (KST)</end>
- <stdout>Can't find variable: tizen</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_const_check_04" priority="P1"
- purpose="Check AlarmManager constants:PERIOD_WEEK" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Check AlarmManager constants:</step_desc>
- <expected>AlarmManager constants value is correct:</expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=4
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:46:44 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:46:46 GMT+0900 (KST)</end>
- <stdout>Can't find variable: tizen</stdout>
- </result_info>
- </testcase>
- </set>
- <set name="Alarm3">
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_constructor_delay" priority="P1"
- purpose="check AlarmRelative attribute when create with delay"
- status="approved" type="compliance" result="PASS">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative create constructor with delay
- </step_desc>
- <expected>AlarmRelative create succeed with constructor with
- delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_constructor_delay.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>PASS</actual_result>
- <start>Sat Jan 01 2000 13:43:44 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_get" priority="P1"
- purpose="check AlarmManager method removeAll: without input attribute"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method get: default check
- </step_desc>
- <expected>AlarmManager method get: default check succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_get.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmAbsolute_attri_date_01" priority="P1"
- purpose="check AlarmAbsolute attribute when create with date"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmAbsolute attribute when create with date
- </step_desc>
- <expected>AlarmAbsolute attribute return correct value when
- create with date
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=1
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmManager_add_rel" priority="P1"
- purpose="check AlarmManager method add: add relative alarm" status="approved"
- type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmManager method add: add relative alarm
- </step_desc>
- <expected>AlarmManager method add: add relative alarm succeed
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_rel.htm
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</end>
- <stdout>Test time out</stdout>
- </result_info>
- </testcase>
- <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"
- id="Alarm_AlarmRelative_attri_delay_02" priority="P1"
- purpose="check AlarmAbsolute attribute when create with period"
- status="approved" type="compliance" result="FAIL">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>check AlarmRelative attribute when create with delay
- </step_desc>
- <expected>AlarmRelative attribute return correct value when
- create succeed with with delay
- </expected>
- </step>
- </steps>
- <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=2
- </test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- <result_info>
- <actual_result>FAIL</actual_result>
- <start>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</start>
- <end>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</end>
- <stdout />
- </result_info>
- </testcase>
- </set>
- </suite>
-</test_definition>
+<?xml version="1.0" encoding="UTF-8"?>\r
+<test_definition name="http://tempuri.org" type=""\r
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
+ xsi:noNamespaceSchemaLocation="test_definition.xsd">\r
+ <environment device_id="generic/sdk/generic:4.0.4/MR1/302030:eng/test-keys"\r
+ device_model="unknown" device_name="MR8" firmware_version="4.0.4"\r
+ host="zhongqing-dev.sh.intel.com (Linux - 2.6.38.6-26.rc1.fc15.i686)"\r
+ os_version="4.0.4" resolution="1280*800" screen_size="250*150" cts_version="2.3.0-3">\r
+ <other> Here is a Long String for testing ~~~~~~~~~~~~~~~~~~~\r
+ Here is a Long String for testing ~~~~~~~~~~~~~~~~~~~\r
+ Here is a Long String for testing ~~~~~~~~~~~~~~~~~~~\r
+ </other>\r
+ </environment>\r
+ <summary test_plan_name="tmp_test_1">\r
+ <start_at>Fri Jul 13 04:04:59 CST 2012</start_at>\r
+ <end_at>Fri Jul 13 05:01:53 CST 2012</end_at>\r
+ </summary>\r
+ <suite name="webapi-tizen-alarm-tests" type="">\r
+ <set name="Alarm1">\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_constructor_delay" priority="P1"\r
+ purpose="check AlarmRelative attribute when create with delay"\r
+ status="approved" type="compliance" result="PASS">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative create constructor with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative create succeed with constructor with\r
+ delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_constructor_delay.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>PASS</actual_result>\r
+ <start>Sat Jan 01 2000 13:43:44 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_get" priority="P1"\r
+ purpose="check AlarmManager method removeAll: without input attribute"\r
+ status="approved" type="compliance" result="BLOCK">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method get: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method get: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_get.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>BLOCK</actual_result>\r
+ <start>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_attri_date_01" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with date"\r
+ status="approved" type="compliance">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute attribute when create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute attribute return correct value when\r
+ create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=1\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>N/R</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_add_rel" priority="P1"\r
+ purpose="check AlarmManager method add: add relative alarm" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method add: add relative alarm\r
+ </step_desc>\r
+ <expected>AlarmManager method add: add relative alarm succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_rel.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_attri_delay_02" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with period"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative attribute when create with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative attribute return correct value when\r
+ create succeed with with delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=2\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_getAll" priority="P1"\r
+ purpose="check AlarmManager method getAll: default check" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method getAll: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method getAll: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_getAll.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:39 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_attri_date_03" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with date"\r
+ status="approved" type="compliance" result="Blocked">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute attribute when create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute attribute return correct value when\r
+ create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=3\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:39 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:41 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_getNextScheduledDate_date" priority="P1"\r
+ purpose="check AlarmAbsolute method getNextScheduledDate when create with date"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute method getNextScheduledDate when\r
+ create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute method getNextScheduledDate return\r
+ correct value when create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_getNextScheduledDate_date.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:41 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:57 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_constructor_date" priority="P1"\r
+ purpose="check AlarmAbsolute create constructor with date" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute create constructor with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute create succeed with constructor with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_constructor_date.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:57 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:13 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_getRemainingSeconds_delay" priority="P1"\r
+ purpose="check AlarmRelative method getNextScheduleddelay when create with delay"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative method getNextScheduleddelay when\r
+ create with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative method getNextScheduleddelay return\r
+ correct value when create succeed with with delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_getRemainingSeconds_delay.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:13 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:30 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_attri_delay_01" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with period"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative attribute when create with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative attribute return correct value when\r
+ create succeed with with delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=1\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:30 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:32 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_add_abs" priority="P1"\r
+ purpose="check AlarmManager method add: add absolute alarm" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method add: add absolute alarm\r
+ </step_desc>\r
+ <expected>AlarmManager method add: add absolute alarm succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_abs.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:32 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:48 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_attri_date_02" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with date"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute attribute when create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute attribute return correct value when\r
+ create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=2\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:48 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:50 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_removeAll" priority="P1"\r
+ purpose="check AlarmManager method removeAll: default check" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method removeAll: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method removeAll: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_removeAll.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:50 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:06 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_remove" priority="P1"\r
+ purpose="check AlarmManager method remove: default check" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method remove: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method remove: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_remove.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:06 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:22 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManagerObject_exist" priority="P1"\r
+ purpose="check AlarmManagerObject existance" status="approved" type="compliance"\r
+ result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManagerObject exist</step_desc>\r
+ <expected>AlarmManagerObject exist</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManagerObject_exist.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:22 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:38 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_const_check_01" priority="P1"\r
+ purpose="Check AlarmManager constants:PERIOD_MINUTE" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Check AlarmManager constants:</step_desc>\r
+ <expected>AlarmManager constants value is correct:</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=1\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:38 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:40 GMT+0900 (KST)</end>\r
+ <stdout>Can't find variable: tizen</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_const_check_02" priority="P1"\r
+ purpose="Check AlarmManager constants:PERIOD_HOUR" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Check AlarmManager constants:</step_desc>\r
+ <expected>AlarmManager constants value is correct:</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=2\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:40 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:42 GMT+0900 (KST)</end>\r
+ <stdout>Can't find variable: tizen</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_const_check_03" priority="P1"\r
+ purpose="Check AlarmManager constants:PERIOD_DAY" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Check AlarmManager constants:</step_desc>\r
+ <expected>AlarmManager constants value is correct:</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=3\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:42 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:44 GMT+0900 (KST)</end>\r
+ <stdout>Can't find variable: tizen</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_const_check_04" priority="P1"\r
+ purpose="Check AlarmManager constants:PERIOD_WEEK" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Check AlarmManager constants:</step_desc>\r
+ <expected>AlarmManager constants value is correct:</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=4\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:44 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:46 GMT+0900 (KST)</end>\r
+ <stdout>Can't find variable: tizen</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ </set>\r
+ <set name="Alarm">\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_constructor_delay" priority="P1"\r
+ purpose="check AlarmRelative attribute when create with delay"\r
+ status="approved" type="compliance" result="PASS">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative create constructor with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative create succeed with constructor with\r
+ delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_constructor_delay.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>PASS</actual_result>\r
+ <start>Sat Jan 01 2000 13:43:44 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_get" priority="P1"\r
+ purpose="check AlarmManager method removeAll: without input attribute"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method get: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method get: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_get.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_attri_date_01" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with date"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute attribute when create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute attribute return correct value when\r
+ create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=1\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_add_rel" priority="P1"\r
+ purpose="check AlarmManager method add: add relative alarm" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method add: add relative alarm\r
+ </step_desc>\r
+ <expected>AlarmManager method add: add relative alarm succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_rel.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_attri_delay_02" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with period"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative attribute when create with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative attribute return correct value when\r
+ create succeed with with delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=2\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ </set>\r
+ </suite>\r
+ <suite name="webapi-tizen-alarm-tests1" type="">\r
+ <set name="Alarm4">\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_constructor_delay" priority="P1"\r
+ purpose="check AlarmRelative attribute when create with delay"\r
+ status="approved" type="compliance" result="PASS">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative create constructor with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative create succeed with constructor with\r
+ delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_constructor_delay.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>PASS</actual_result>\r
+ <start>Sat Jan 01 2000 13:43:44 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_get" priority="P1"\r
+ purpose="check AlarmManager method removeAll: without input attribute"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method get: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method get: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_get.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_attri_date_01" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with date"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute attribute when create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute attribute return correct value when\r
+ create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=1\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_add_rel" priority="P1"\r
+ purpose="check AlarmManager method add: add relative alarm" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method add: add relative alarm\r
+ </step_desc>\r
+ <expected>AlarmManager method add: add relative alarm succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_rel.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_attri_delay_02" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with period"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative attribute when create with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative attribute return correct value when\r
+ create succeed with with delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=2\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_getAll" priority="P1"\r
+ purpose="check AlarmManager method getAll: default check" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method getAll: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method getAll: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_getAll.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:39 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_attri_date_03" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with date"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute attribute when create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute attribute return correct value when\r
+ create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=3\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:39 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:41 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_getNextScheduledDate_date" priority="P1"\r
+ purpose="check AlarmAbsolute method getNextScheduledDate when create with date"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute method getNextScheduledDate when\r
+ create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute method getNextScheduledDate return\r
+ correct value when create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_getNextScheduledDate_date.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:41 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:57 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_constructor_date" priority="P1"\r
+ purpose="check AlarmAbsolute create constructor with date" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute create constructor with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute create succeed with constructor with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_constructor_date.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:57 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:13 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_getRemainingSeconds_delay" priority="P1"\r
+ purpose="check AlarmRelative method getNextScheduleddelay when create with delay"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative method getNextScheduleddelay when\r
+ create with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative method getNextScheduleddelay return\r
+ correct value when create succeed with with delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_getRemainingSeconds_delay.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:13 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:30 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_attri_delay_01" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with period"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative attribute when create with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative attribute return correct value when\r
+ create succeed with with delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=1\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:30 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:32 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_add_abs" priority="P1"\r
+ purpose="check AlarmManager method add: add absolute alarm" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method add: add absolute alarm\r
+ </step_desc>\r
+ <expected>AlarmManager method add: add absolute alarm succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_abs.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:32 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:48 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_attri_date_02" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with date"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute attribute when create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute attribute return correct value when\r
+ create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=2\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:48 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:45:50 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_removeAll" priority="P1"\r
+ purpose="check AlarmManager method removeAll: default check" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method removeAll: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method removeAll: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_removeAll.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:45:50 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:06 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_remove" priority="P1"\r
+ purpose="check AlarmManager method remove: default check" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method remove: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method remove: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_remove.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:06 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:22 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManagerObject_exist" priority="P1"\r
+ purpose="check AlarmManagerObject existance" status="approved" type="compliance"\r
+ result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManagerObject exist</step_desc>\r
+ <expected>AlarmManagerObject exist</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManagerObject_exist.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:22 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:38 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_const_check_01" priority="P1"\r
+ purpose="Check AlarmManager constants:PERIOD_MINUTE" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Check AlarmManager constants:</step_desc>\r
+ <expected>AlarmManager constants value is correct:</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=1\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:38 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:40 GMT+0900 (KST)</end>\r
+ <stdout>Can't find variable: tizen</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_const_check_02" priority="P1"\r
+ purpose="Check AlarmManager constants:PERIOD_HOUR" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Check AlarmManager constants:</step_desc>\r
+ <expected>AlarmManager constants value is correct:</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=2\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:40 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:42 GMT+0900 (KST)</end>\r
+ <stdout>Can't find variable: tizen</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_const_check_03" priority="P1"\r
+ purpose="Check AlarmManager constants:PERIOD_DAY" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Check AlarmManager constants:</step_desc>\r
+ <expected>AlarmManager constants value is correct:</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=3\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:42 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:44 GMT+0900 (KST)</end>\r
+ <stdout>Can't find variable: tizen</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_const_check_04" priority="P1"\r
+ purpose="Check AlarmManager constants:PERIOD_WEEK" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Check AlarmManager constants:</step_desc>\r
+ <expected>AlarmManager constants value is correct:</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_const_check.htm?total_num=4&locator_key=id&value=4\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:46:44 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:46:46 GMT+0900 (KST)</end>\r
+ <stdout>Can't find variable: tizen</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ </set>\r
+ <set name="Alarm3">\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_constructor_delay" priority="P1"\r
+ purpose="check AlarmRelative attribute when create with delay"\r
+ status="approved" type="compliance" result="PASS">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative create constructor with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative create succeed with constructor with\r
+ delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_constructor_delay.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>PASS</actual_result>\r
+ <start>Sat Jan 01 2000 13:43:44 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_get" priority="P1"\r
+ purpose="check AlarmManager method removeAll: without input attribute"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method get: default check\r
+ </step_desc>\r
+ <expected>AlarmManager method get: default check succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_get.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:43:46 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmAbsolute_attri_date_01" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with date"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmAbsolute attribute when create with date\r
+ </step_desc>\r
+ <expected>AlarmAbsolute attribute return correct value when\r
+ create with date\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmAbsolute_attri_date.htm?total_num=3&locator_key=id&value=1\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:02 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmManager_add_rel" priority="P1"\r
+ purpose="check AlarmManager method add: add relative alarm" status="approved"\r
+ type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmManager method add: add relative alarm\r
+ </step_desc>\r
+ <expected>AlarmManager method add: add relative alarm succeed\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmManager_add_rel.htm\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:05 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</end>\r
+ <stdout>Test time out</stdout>\r
+ </result_info>\r
+ </testcase>\r
+ <testcase component="WebAPI/Tizen/Alarm" execution_type="auto"\r
+ id="Alarm_AlarmRelative_attri_delay_02" priority="P1"\r
+ purpose="check AlarmAbsolute attribute when create with period"\r
+ status="approved" type="compliance" result="FAIL">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>check AlarmRelative attribute when create with delay\r
+ </step_desc>\r
+ <expected>AlarmRelative attribute return correct value when\r
+ create succeed with with delay\r
+ </expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry test_script_expected_result="0">/opt/webapi-tizen-alarm-tests/Alarm/Alarm_AlarmRelative_attri_delay.htm?total_num=2&locator_key=id&value=2\r
+ </test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ <result_info>\r
+ <actual_result>FAIL</actual_result>\r
+ <start>Sat Jan 01 2000 13:44:21 GMT+0900 (KST)</start>\r
+ <end>Sat Jan 01 2000 13:44:23 GMT+0900 (KST)</end>\r
+ <stdout />\r
+ </result_info>\r
+ </testcase>\r
+ </set>\r
+ </suite>\r
+</test_definition>\r
-@charset "UTF-8";
-/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
- {
- margin: 0;
- padding: 0;
- border: 0;
- font-weight: inherit;
- font-style: inherit;
- font-size: 0.96em;
- font-family: arial;
- vertical-align: baseline;
-}
-
-#testcasepage p {
- text-align: left;
-}
-
-#suite_title {
- text-align: left;
-}
-
-#btc {
- text-align: right;
-}
-
-#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
-}
-
-#testcasepage th,#testcasepage td {
- text-align: left;
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- vertical-align: middle;
-}
-
-#cases table {
- width: 101%;
-}
-
-#fail_cases table {
- width: 101%;
-}
-
-#title table {
- width: 101%;
-}
-
-#device table {
- width: 50%;
-}
-
-#summary table {
- width: 50%;
-}
-
-#testcasepage th {
- border-bottom: 1px solid #000;
- background-color: #AAAAAA;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
-}
-
-#testcasepage th:last-child,#testcasepage td:last-child {
- border-right: 1px solid #000;
-}
-
-#testcasepage td {
- border-left: 1px solid;
- font-weight: normal;
- border-bottom: 1px solid;
-}
-
-#testcasepage td.yellow_rate {
- background-color: #ffcc00;
-}
-
-#testcasepage td.green_rate {
- background-color: #33cc33;
-}
-
-#testcasepage td.dgreen_rate {
- background-color: #339933;
-}
-
-#testcasepage td.red_rate {
- background-color: #FF3333;
-}
-
-#title table,#title tr,#title td {
- border-left: none;
- border-bottom: none;
- text-align: center;
-}
-
-#title td:last-child {
- border-right: none;
-}
-
-#testcasepage h1 {
- font-size: 2em;
- font-family: Arial, sans-serif;
- font-weight: bold;
- line-height: 1;
- color: #000;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
- font-weight: bold;
-}
-
-#goTopBtn {
- right: 0px;
- bottom: 0px;
- position: fixed; +position: absolute;
- top: expression(parseInt(document.body.scrollTop)+document.body.clientHeight-40);
+@charset "UTF-8";\r
+/* CSS Document */\r
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td\r
+ {\r
+ margin: 0;\r
+ padding: 0;\r
+ border: 0;\r
+ font-weight: inherit;\r
+ font-style: inherit;\r
+ font-size: 0.96em;\r
+ font-family: arial;\r
+ vertical-align: baseline;\r
+}\r
+\r
+#testcasepage p {\r
+ text-align: left;\r
+}\r
+\r
+#suite_title {\r
+ text-align: left;\r
+}\r
+\r
+#btc {\r
+ text-align: right;\r
+}\r
+\r
+#testcasepage table {\r
+ border-collapse: separate;\r
+ border-spacing: 0;\r
+ margin-bottom: 1.4em;\r
+ vertical-align: middle;\r
+}\r
+\r
+#testcasepage th,#testcasepage td {\r
+ text-align: left;\r
+ font-weight: normal;\r
+ padding: 4px 10px 4px 5px;\r
+ vertical-align: middle;\r
+}\r
+\r
+#cases table {\r
+ width: 101%;\r
+}\r
+\r
+#fail_cases table {\r
+ width: 101%;\r
+}\r
+\r
+#title table {\r
+ width: 101%;\r
+}\r
+\r
+#device table {\r
+ width: 50%;\r
+}\r
+\r
+#summary table {\r
+ width: 50%;\r
+}\r
+\r
+#testcasepage th {\r
+ border-bottom: 1px solid #000;\r
+ background-color: #AAAAAA;\r
+ border-left: 1px solid #000;\r
+ border-top: 1px solid #000;\r
+ color: #000;\r
+ font-weight: bold;\r
+ vertical-align: bottom;\r
+}\r
+\r
+#testcasepage th:last-child,#testcasepage td:last-child {\r
+ border-right: 1px solid #000;\r
+}\r
+\r
+#testcasepage td {\r
+ border-left: 1px solid;\r
+ font-weight: normal;\r
+ border-bottom: 1px solid;\r
+}\r
+\r
+#testcasepage td.yellow_rate {\r
+ background-color: #ffcc00;\r
+}\r
+\r
+#testcasepage td.green_rate {\r
+ background-color: #33cc33;\r
+}\r
+\r
+#testcasepage td.dgreen_rate {\r
+ background-color: #339933;\r
+}\r
+\r
+#testcasepage td.red_rate {\r
+ background-color: #FF3333;\r
+}\r
+\r
+#title table,#title tr,#title td {\r
+ border-left: none;\r
+ border-bottom: none;\r
+ text-align: center;\r
+}\r
+\r
+#title td:last-child {\r
+ border-right: none;\r
+}\r
+\r
+#testcasepage h1 {\r
+ font-size: 2em;\r
+ font-family: Arial, sans-serif;\r
+ font-weight: bold;\r
+ line-height: 1;\r
+ color: #000;\r
+ margin-bottom: 0.75em;\r
+ padding-top: 0.25em;\r
+ font-weight: bold;\r
+}\r
+\r
+#goTopBtn {\r
+ right: 0px;\r
+ bottom: 0px;\r
+ position: fixed; +position: absolute;\r
+ top: expression(parseInt(document.body.scrollTop)+document.body.clientHeight-40);\r
}
\ No newline at end of file
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet type="text/xsl" href="testcase.xsl"?>
-<test_definition xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="test_definition.xsd">
- <suite name="webapi-w3c-widget-tests">
- <set name="WidgetPackaging">
- <testcase
- purpose="Tests the user agent's ability to process files with no file extension. "
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="auto" priority="P3" id="dm">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dm</step_desc>
- <expected>
- To pass, the user agent start file of the widget must be index.htm</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dm</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Tizen" specification="Tizen Packaging and XML Configuration"
- interface="Tizen" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests the user agent's ability to process files with a file extension other than .wgt."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="dn">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dn.test</step_desc>
- <expected>
- To pass, the user agent start file of the widget must be index.htm</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dn.test</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" usage="true" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase purpose="Test the ability of the UA to verify a zip archive."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="do">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/split.wgt.001</step_desc>
- <expected>
- To pass, the user agent must treat this as an invalid widget (archive is spanned).</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/split.wgt.001</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test the user agent's ability to get a widget over HTTP and respect the application/widget mimetype. The server from which this test is served from has been set up to label the 'test' resource as an 'application/widget'."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="z3">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/z3</step_desc>
- <expected>
- To pass, a user agent must correctly process this resource as a widget because of the 'application/widget' mimetype (i.e., not only because of sniffing).</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/z3</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test the user agent's ability to get a widget over HTTP and respect the 'application/widget' mimetype. The server from which this test is served from has been set up to label the 'test.html' resource as an 'application/widget'."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="z4">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/z4.html</step_desc>
- <expected>
- To pass, a user agent must correctly process this resource as a widget because of the 'application/widget' mimetype (i.e., not only via sniffing).</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/z4.html</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that an empty defaultlocale attribute is ignored (and does not cause the widget to be treated as invalid)."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="dlocignore00">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dlocignore00.wgt</step_desc>
- <expected>
- To pass, the widget must simply run..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dlocignore00.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that the user agent applies rule for getting a single attribute value to the defaultlocale attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="dlocignore01">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-001.wgt</step_desc>
- <expected> To pass, the name of the widget must be the value PASS..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-001.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that the user agent matches obscure, yet valid, language tags."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="dlocignore02">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-002.wgt</step_desc>
- <expected> To pass, the widgets description must be the value PASS..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-002.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that a language tag already part of the UA's locales list is ignored when it is repeated for defaultlocale attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="dlocignore03">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-003.wgt</step_desc>
- <expected>
- To pass, the specified value should not be added twice to the locales list of the UA..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-003.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that the default locale is added to the end of the user agent's locale list
- (and does not override the default language, which is assumed to be 'en')."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="dlocignore04">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-004.wgt</step_desc>
- <expected>
- To pass, the name of the widget must be PASS..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-004.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that the value of defaultlocale is also used to in folder-based localization."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="dlocuse00">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-000.wgt</step_desc>
- <expected>
- To pass, the index.html of the folder 'locales/esx-al/' should be loaded and say PASS..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-000.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that the value of defaultlocale works in conjunction to xml:lang on the widget element."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="dlocuse01">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dlocuse01.wgt</step_desc>
- <expected>
- To pass, the name of the widget must be PASS..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dlocuse01.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that the UA rejects configuration documents that don't have
- correct widget element at the root."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="aa">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aa.wgt</step_desc>
- <expected> To pass, the UA must treat this as an
- invalid widget (the root element is not widget)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aa.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that the UA rejects configuration documents that don't have correct
- widget element at the root."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ab">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ab.wgt</step_desc>
- <expected> To pass, the UA must treat this as an invalid widget (the namespace is wrong)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ab.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that the UA rejects configuration documents that don't have correct widget
- element at the root."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ac">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ac.wgt</step_desc>
- <expected>To pass, the UA must treat this as an invalid widget (the namespace is missing)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ac.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly processes a author element."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="af">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/af.wgt</step_desc>
- <expected>
- To pass, the author name must be the string "PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/af.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the Rule for Getting Text Content with Normalized White Space."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ag">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ag.wgt</step_desc>
- <expected>
- To pass, the widget author must be the string "P A S S" (i.e., white space collapsed to single space)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ag.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the Rule for Getting Text Content with Normalized White Space."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ah">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ah.wgt</step_desc>
- <expected>
- To pass, the author name must be the string "PASS" (i.e., all white space collapsed to single space, spaces at start/end trimmed)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ah.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the rule for getting a single attribute value."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ai">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ai.wgt</step_desc>
- <expected>
- To pass, the author email must be the string "PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ai.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the rule for getting a single attribute value and the Rule for Getting Text Content with Normalized White Space."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="aj">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aj.wgt</step_desc>
- <expected>
- To pass, the author name must be the string "PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aj.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the rule for getting a single attribute value and the Rule for Getting Text Content with Normalized White Space."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ak">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ak.wgt</step_desc>
- <expected>
- To pass, the author name must be the string "PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ak.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test the ability of the user agent to handle an empty author element."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="al">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/al.wgt</step_desc>
- <expected>
- To pass, the author name must be an empty string..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/al.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test the ability of the user agent to correctly process the author href attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="am">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/am.wgt</step_desc>
- <expected>
- To pass, the value of author href must be "PASS:PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/am.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test the ability of the user agent to correctly process the author href attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="an">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/an.wgt</step_desc>
- <expected>
- To pass, the value of author href must be ignored..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/an.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly processes a name element."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ao">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ao.wgt</step_desc>
- <expected>
- To pass, the widget name must be the string "PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ao.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the Rule for Getting Text Content with Normalized White Space."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ap">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ap.wgt</step_desc>
- <expected>
- To pass, the widget name must be the string "P A S S" (i.e., white space collapsed to single space)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ap.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the Rule for Getting Text Content with Normalized White Space."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="aq">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aq.wgt</step_desc>
- <expected>
- To pass, the widget name must be the string "PASS" (i.e., all white space collapsed to single space, spaces at front/back trimmed)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aq.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the rule for getting a single attribute value."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ar">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ar.wgt</step_desc>
- <expected>
- To pass, the widget short name must be the string "PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ar.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the rule for getting a single attribute value and
- the Rule for Getting Text Content with Normalized White Space."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="as">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/as.wgt</step_desc>
- <expected>
- To pass, the widget short name must be the string "PASS" and the widget name must be "PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/as.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly applies the rule for getting a single attribute value and
- the Rule for Getting Text Content with Normalized White Space."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="at">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/at.wgt</step_desc>
- <expected>
- To pass, the widget short name must be the string "PASS" and the widget name must be "PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/at.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly processes the short attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="au">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/au.wgt</step_desc>
- <expected>
- To pass, the widget short name must be an empty string..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/au.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test the ability of the user agent to handle an empty name element."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="av">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/av.wgt</step_desc>
- <expected>
- To pass, the widget name must be an empty string..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/av.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that a user agent correctly processes a name element with xml:lang attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="oa">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/oa.wgt</step_desc>
- <expected>
- To pass, the widget name must be the string "PASS"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/oa.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that the user agent does not attempt to load a default start file when a custom start file has been declared."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="aw">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aw.wgt</step_desc>
- <expected>
- To pass, the widget start file must point to "pass.html" and the icons list must contain a pointer to "icon.png" at the root of the widget..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aw.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase purpose="Test the UA's ability process the height attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ax">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ax.wgt</step_desc>
- <expected>
- To pass, the widget height must be either the numeric value 123 or a value greater than 0..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ax.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase purpose="Test the UA's ability process the height attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ay">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ay.wgt</step_desc>
- <expected>
- To pass, the user agent must ignore the value of the height attribute (the value is composed of characters)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ay.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase purpose="Test the UA's ability process the height attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="az">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/az.wgt</step_desc>
- <expected>
- To pass, the widget height must be the numeric value 100 or a value greater than 0 (resulting from rule for parsing a non-negative integer)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/az.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase purpose="Test the UA's ability process the height attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="a1">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a1.wgt</step_desc>
- <expected>
- To pass, the widget height must be the numeric value 123 or a value greater than 0 (resulting from rule for parsing a non-negative integer)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a1.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase purpose="Test the UA's ability process the height attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="a2">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a2.wgt</step_desc>
- <expected>
- To pass, the widget height must be ignored (the value is an empty string, hence it would be ignored)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a2.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase purpose="Test the UA's ability process the height attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="a3">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a3.wgt</step_desc>
- <expected>
- To pass, the widget height must be ignored (the value is a sequence of space characters, hence it would be ignored)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a3.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase purpose="Test the UA's ability process the height attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="a4">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a4.wgt</step_desc>
- <expected>
- To pass, the widget height must be ignored (the value is an empty string)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a4.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that the UA skips preference elements without a name attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="a5">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a5.wgt</step_desc>
- <expected>
- To pass, widget preferences must remain an empty list (i.e., the preference is skipped)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a5.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that the UA skips preference element already defined."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="a6">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a6.wgt</step_desc>
- <expected>
- To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "false"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a6.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that the UA does a case sensitive comparison on the value of the readonly attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="a7">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a7.wgt</step_desc>
- <expected>
- To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "false"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a7.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that the UA does a case sensitive comparison on the value of the readonly attribute."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="a8">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a8.wgt</step_desc>
- <expected>
- To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "true"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a8.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that the UA sets the readonly attribute to false by default."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="a9">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a9.wgt</step_desc>
- <expected>
- To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "false"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a9.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test that the UA skips multiple preference element already defined."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="ba">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ba.wgt</step_desc>
- <expected>
- To pass, widget preference must contain one preference whose name is "a" and whose value is "a" and whose readonly attr value must be "false"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ba.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test the UA's ability store preferences whose name vary only in case."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="bb">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bb.wgt</step_desc>
- <expected>
- To pass, widget preference must contain two preferences: 1 must have a name "a" and whose value is "a" and whose readonly attr value must be "false". 2 must have a name "A" and whose value is "b" and whose readonly attribute value must be "false"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bb.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Tests that the UA applies the rule for getting a single attribute value to name, value, and readonly attributes."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="bc">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bc.wgt</step_desc>
- <expected>
- To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "false"..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bc.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test to make sure that the UA only checks the root of the widget for config files, and not in an arbitrary folder."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="bg">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bg.wgt</step_desc>
- <expected>
- To pass, the user agent must treat this widget as an invalid widget (config file is not at the root)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bg.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- <testcase
- purpose="Test to make sure that the UA only checks the root of the widget for config files, and not in a locale folder."
- type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"
- execution_type="manual" priority="P3" id="bh">
- <description>
- <pre_condition />
- <post_condition />
- <steps>
- <step order="1">
- <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bh.wgt</step_desc>
- <expected>
- To pass, the user agent must treat this widget as an invalid widget (config file is not at the root, but in locale folder)..</expected>
- </step>
- </steps>
- <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bh.wgt</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion category="Tizen Device API Specifications"
- section="Widget" specification="Widget Packaging and XML Configuration"
- interface="Widget" element_name="constructor" element_type="method" />
- <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>
- <spec_statement>spec_statement</spec_statement>
- </spec>
- </specs>
- </testcase>
- </set>
- </suite>
-</test_definition>
+<?xml version="1.0" encoding="UTF-8"?>\r
+<?xml-stylesheet type="text/xsl" href="testcase.xsl"?>\r
+<test_definition xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
+ xsi:noNamespaceSchemaLocation="test_definition.xsd">\r
+ <suite name="webapi-w3c-widget-tests">\r
+ <set name="WidgetPackaging">\r
+ <testcase\r
+ purpose="Tests the user agent's ability to process files with no file extension. "\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="auto" priority="P3" id="dm">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dm</step_desc>\r
+ <expected> \r
+ To pass, the user agent start file of the widget must be index.htm</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dm</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Tizen" specification="Tizen Packaging and XML Configuration"\r
+ interface="Tizen" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests the user agent's ability to process files with a file extension other than .wgt."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="dn">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dn.test</step_desc>\r
+ <expected> \r
+ To pass, the user agent start file of the widget must be index.htm</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dn.test</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" usage="true" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase purpose="Test the ability of the UA to verify a zip archive."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="do">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/split.wgt.001</step_desc>\r
+ <expected> \r
+ To pass, the user agent must treat this as an invalid widget (archive is spanned).</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/split.wgt.001</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test the user agent's ability to get a widget over HTTP and respect the application/widget mimetype. The server from which this test is served from has been set up to label the 'test' resource as an 'application/widget'."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="z3">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/z3</step_desc>\r
+ <expected> \r
+ To pass, a user agent must correctly process this resource as a widget because of the 'application/widget' mimetype (i.e., not only because of sniffing).</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/z3</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test the user agent's ability to get a widget over HTTP and respect the 'application/widget' mimetype. The server from which this test is served from has been set up to label the 'test.html' resource as an 'application/widget'."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="z4">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/z4.html</step_desc>\r
+ <expected> \r
+ To pass, a user agent must correctly process this resource as a widget because of the 'application/widget' mimetype (i.e., not only via sniffing).</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/z4.html</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that an empty defaultlocale attribute is ignored (and does not cause the widget to be treated as invalid)."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="dlocignore00">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dlocignore00.wgt</step_desc>\r
+ <expected> \r
+ To pass, the widget must simply run..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dlocignore00.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that the user agent applies rule for getting a single attribute value to the defaultlocale attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="dlocignore01">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-001.wgt</step_desc>\r
+ <expected> To pass, the name of the widget must be the value PASS..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-001.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that the user agent matches obscure, yet valid, language tags."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="dlocignore02">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-002.wgt</step_desc>\r
+ <expected> To pass, the widgets description must be the value PASS..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-002.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that a language tag already part of the UA's locales list is ignored when it is repeated for defaultlocale attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="dlocignore03">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-003.wgt</step_desc>\r
+ <expected> \r
+ To pass, the specified value should not be added twice to the locales list of the UA..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-003.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that the default locale is added to the end of the user agent's locale list \r
+ (and does not override the default language, which is assumed to be 'en')."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="dlocignore04">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-004.wgt</step_desc>\r
+ <expected> \r
+ To pass, the name of the widget must be PASS..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-004.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that the value of defaultlocale is also used to in folder-based localization."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="dlocuse00">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-000.wgt</step_desc>\r
+ <expected>\r
+ To pass, the index.html of the folder 'locales/esx-al/' should be loaded and say PASS..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ta-de-000.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that the value of defaultlocale works in conjunction to xml:lang on the widget element."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="dlocuse01">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dlocuse01.wgt</step_desc>\r
+ <expected>\r
+ To pass, the name of the widget must be PASS..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/dlocuse01.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that the UA rejects configuration documents that don't have\r
+ correct widget element at the root."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="aa">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aa.wgt</step_desc>\r
+ <expected> To pass, the UA must treat this as an\r
+ invalid widget (the root element is not widget)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aa.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that the UA rejects configuration documents that don't have correct\r
+ widget element at the root."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ab">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ab.wgt</step_desc>\r
+ <expected> To pass, the UA must treat this as an invalid widget (the namespace is wrong)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ab.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that the UA rejects configuration documents that don't have correct widget\r
+ element at the root."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ac">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ac.wgt</step_desc>\r
+ <expected>To pass, the UA must treat this as an invalid widget (the namespace is missing)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ac.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly processes a author element."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="af">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/af.wgt</step_desc>\r
+ <expected>\r
+ To pass, the author name must be the string "PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/af.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the Rule for Getting Text Content with Normalized White Space."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ag">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ag.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget author must be the string "P A S S" (i.e., white space collapsed to single space)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ag.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the Rule for Getting Text Content with Normalized White Space."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ah">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ah.wgt</step_desc>\r
+ <expected>\r
+ To pass, the author name must be the string "PASS" (i.e., all white space collapsed to single space, spaces at start/end trimmed)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ah.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the rule for getting a single attribute value."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ai">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ai.wgt</step_desc>\r
+ <expected>\r
+ To pass, the author email must be the string "PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ai.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the rule for getting a single attribute value and the Rule for Getting Text Content with Normalized White Space."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="aj">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aj.wgt</step_desc>\r
+ <expected>\r
+ To pass, the author name must be the string "PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aj.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the rule for getting a single attribute value and the Rule for Getting Text Content with Normalized White Space."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ak">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ak.wgt</step_desc>\r
+ <expected>\r
+ To pass, the author name must be the string "PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ak.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test the ability of the user agent to handle an empty author element."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="al">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/al.wgt</step_desc>\r
+ <expected>\r
+ To pass, the author name must be an empty string..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/al.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test the ability of the user agent to correctly process the author href attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="am">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/am.wgt</step_desc>\r
+ <expected>\r
+ To pass, the value of author href must be "PASS:PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/am.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test the ability of the user agent to correctly process the author href attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="an">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/an.wgt</step_desc>\r
+ <expected>\r
+ To pass, the value of author href must be ignored..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/an.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly processes a name element."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ao">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ao.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget name must be the string "PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ao.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the Rule for Getting Text Content with Normalized White Space."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ap">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ap.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget name must be the string "P A S S" (i.e., white space collapsed to single space)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ap.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the Rule for Getting Text Content with Normalized White Space."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="aq">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aq.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget name must be the string "PASS" (i.e., all white space collapsed to single space, spaces at front/back trimmed)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aq.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the rule for getting a single attribute value."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ar">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ar.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget short name must be the string "PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ar.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the rule for getting a single attribute value and\r
+ the Rule for Getting Text Content with Normalized White Space."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="as">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/as.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget short name must be the string "PASS" and the widget name must be "PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/as.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly applies the rule for getting a single attribute value and\r
+ the Rule for Getting Text Content with Normalized White Space."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="at">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/at.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget short name must be the string "PASS" and the widget name must be "PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/at.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly processes the short attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="au">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/au.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget short name must be an empty string..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/au.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test the ability of the user agent to handle an empty name element."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="av">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/av.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget name must be an empty string..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/av.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that a user agent correctly processes a name element with xml:lang attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="oa">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/oa.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget name must be the string "PASS"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/oa.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that the user agent does not attempt to load a default start file when a custom start file has been declared."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="aw">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aw.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget start file must point to "pass.html" and the icons list must contain a pointer to "icon.png" at the root of the widget..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/aw.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase purpose="Test the UA's ability process the height attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ax">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ax.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget height must be either the numeric value 123 or a value greater than 0..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ax.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase purpose="Test the UA's ability process the height attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ay">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ay.wgt</step_desc>\r
+ <expected>\r
+ To pass, the user agent must ignore the value of the height attribute (the value is composed of characters)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ay.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase purpose="Test the UA's ability process the height attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="az">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/az.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget height must be the numeric value 100 or a value greater than 0 (resulting from rule for parsing a non-negative integer)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/az.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase purpose="Test the UA's ability process the height attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="a1">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a1.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget height must be the numeric value 123 or a value greater than 0 (resulting from rule for parsing a non-negative integer)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a1.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase purpose="Test the UA's ability process the height attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="a2">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a2.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget height must be ignored (the value is an empty string, hence it would be ignored)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a2.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase purpose="Test the UA's ability process the height attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="a3">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a3.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget height must be ignored (the value is a sequence of space characters, hence it would be ignored)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a3.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase purpose="Test the UA's ability process the height attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="a4">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a4.wgt</step_desc>\r
+ <expected>\r
+ To pass, the widget height must be ignored (the value is an empty string)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a4.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that the UA skips preference elements without a name attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="a5">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a5.wgt</step_desc>\r
+ <expected>\r
+ To pass, widget preferences must remain an empty list (i.e., the preference is skipped)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a5.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that the UA skips preference element already defined."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="a6">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a6.wgt</step_desc>\r
+ <expected>\r
+ To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "false"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a6.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that the UA does a case sensitive comparison on the value of the readonly attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="a7">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a7.wgt</step_desc>\r
+ <expected>\r
+ To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "false"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a7.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that the UA does a case sensitive comparison on the value of the readonly attribute."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="a8">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a8.wgt</step_desc>\r
+ <expected>\r
+ To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "true"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a8.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that the UA sets the readonly attribute to false by default."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="a9">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a9.wgt</step_desc>\r
+ <expected>\r
+ To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "false"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/a9.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test that the UA skips multiple preference element already defined."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="ba">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ba.wgt</step_desc>\r
+ <expected>\r
+ To pass, widget preference must contain one preference whose name is "a" and whose value is "a" and whose readonly attr value must be "false"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/ba.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test the UA's ability store preferences whose name vary only in case."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="bb">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bb.wgt</step_desc>\r
+ <expected>\r
+ To pass, widget preference must contain two preferences: 1 must have a name "a" and whose value is "a" and whose readonly attr value must be "false". 2 must have a name "A" and whose value is "b" and whose readonly attribute value must be "false"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bb.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Tests that the UA applies the rule for getting a single attribute value to name, value, and readonly attributes."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="bc">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bc.wgt</step_desc>\r
+ <expected>\r
+ To pass, widget preference must contain one preference whose name is "PASS" and whose value is "PASS" and whose readonly attr value must be "false"..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bc.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test to make sure that the UA only checks the root of the widget for config files, and not in an arbitrary folder."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="bg">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bg.wgt</step_desc>\r
+ <expected>\r
+ To pass, the user agent must treat this widget as an invalid widget (config file is not at the root)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bg.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ <testcase\r
+ purpose="Test to make sure that the UA only checks the root of the widget for config files, and not in a locale folder."\r
+ type="compliance" status="ready" component="WebAPI/W3C_Widget/WidgetPackaging"\r
+ execution_type="manual" priority="P3" id="bh">\r
+ <description>\r
+ <pre_condition />\r
+ <post_condition />\r
+ <steps>\r
+ <step order="1">\r
+ <step_desc>Install /opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bh.wgt</step_desc>\r
+ <expected>\r
+ To pass, the user agent must treat this widget as an invalid widget (config file is not at the root, but in locale folder)..</expected>\r
+ </step>\r
+ </steps>\r
+ <test_script_entry>/opt/webapi-w3c-widget-tests/WidgetPackaging/w3c/bh.wgt</test_script_entry>\r
+ </description>\r
+ <specs>\r
+ <spec>\r
+ <spec_assertion category="Tizen Device API Specifications"\r
+ section="Widget" specification="Widget Packaging and XML Configuration"\r
+ interface="Widget" element_name="constructor" element_type="method" />\r
+ <spec_url>http://www.w3.org/TR/widgets-apis/</spec_url>\r
+ <spec_statement>spec_statement</spec_statement>\r
+ </spec>\r
+ </specs>\r
+ </testcase>\r
+ </set>\r
+ </suite>\r
+</test_definition>\r
for element in root.findall("buildinfo"):
if element is not None:
if element.get("name").lower() == 'buildversion':
- child = etree.Element.getchildren(element)
+ child = list(element)
if child and child[0].text:
buildid = child[0].text
build_info['buildid'] = buildid
if element.get("name").lower() == 'manufacturer':
- child = etree.Element.getchildren(element)
+ child = list(element)
if child and child[0].text:
manufacturer = child[0].text
build_info['manufacturer'] = manufacturer
if element.get("name").lower() == 'model':
- child = etree.Element.getchildren(element)
+ child = list(element)
if child and child[0].text:
model = child[0].text
build_info['model'] = model
-@charset "UTF-8";
-/* CSS Document */
-#testcasepage div,
-#testcasepage h1,
-#testcasepage p,
-#testcasepage table,
-#testcasepage tr,
-#testcasepage th,
-#testcasepage td {
- margin: 0;
- padding: 0;
- border: 0;
- font-weight: inherit;
- font-style: inherit;
- font-size: 0.96em;
- font-family: arial;
- vertical-align: baseline;
-}
-
-#testcasepage p {
- text-align: left;
-}
-
-#suite_title {
- text-align: left;
-}
-
-#btc {
- text-align: right;
-}
-
-#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
-}
-
-#testcasepage th,
-#testcasepage td {
- text-align: left;
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- vertical-align: middle;
-}
-
-#cases table {
- width: 101%;
-}
-
-#fail_cases table {
- width: 101%;
-}
-
-#title table {
- width: 101%;
-}
-
-#device table {
- width: 50%;
-}
-
-#summary table {
- width: 50%;
-}
-
-#testcasepage th {
- border-bottom: 1px solid #000;
- background-color: #AAAAAA;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
-}
-
-#testcasepage th:last-child,
-#testcasepage td:last-child {
- border-right: 1px solid #000;
-}
-
-#testcasepage td {
- border-left: 1px solid;
- font-weight: normal;
- border-bottom: 1px solid;
-}
-
-#testcasepage td.yellow_rate {
- background-color: #ffcc00;
-}
-
-#testcasepage td.green_rate {
- background-color: #33cc33;
-}
-
-#testcasepage td.dgreen_rate {
- background-color: #339933;
-}
-
-#testcasepage td.red_rate {
- background-color: #FF3333;
-}
-
-#title table,
-#title tr,
-#title td {
- border-left: none;
- border-bottom: none;
- text-align: center;
-}
-
-#title td:last-child {
- border-right: none;
-}
-
-#testcasepage h1 {
- font-size: 2em;
- font-family: Arial, sans-serif;
- font-weight: bold;
- line-height: 1;
- color: #000;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
- font-weight: bold;
-}
-
-#goTopBtn {
- right: 0px;
- bottom: 0px;
- position: fixed; +position: absolute;
- top: expression(parseInt(document.body.scrollTop) + document.body.clientHeight - 40);
-}
+@charset "UTF-8";\r
+/* CSS Document */\r
+#testcasepage div,\r
+#testcasepage h1,\r
+#testcasepage p,\r
+#testcasepage table,\r
+#testcasepage tr,\r
+#testcasepage th,\r
+#testcasepage td {\r
+ margin: 0;\r
+ padding: 0;\r
+ border: 0;\r
+ font-weight: inherit;\r
+ font-style: inherit;\r
+ font-size: 0.96em;\r
+ font-family: arial;\r
+ vertical-align: baseline;\r
+}\r
+\r
+#testcasepage p {\r
+ text-align: left;\r
+}\r
+\r
+#suite_title {\r
+ text-align: left;\r
+}\r
+\r
+#btc {\r
+ text-align: right;\r
+}\r
+\r
+#testcasepage table {\r
+ border-collapse: separate;\r
+ border-spacing: 0;\r
+ margin-bottom: 1.4em;\r
+ vertical-align: middle;\r
+}\r
+\r
+#testcasepage th,\r
+#testcasepage td {\r
+ text-align: left;\r
+ font-weight: normal;\r
+ padding: 4px 10px 4px 5px;\r
+ vertical-align: middle;\r
+}\r
+\r
+#cases table {\r
+ width: 101%;\r
+}\r
+\r
+#fail_cases table {\r
+ width: 101%;\r
+}\r
+\r
+#title table {\r
+ width: 101%;\r
+}\r
+\r
+#device table {\r
+ width: 50%;\r
+}\r
+\r
+#summary table {\r
+ width: 50%;\r
+}\r
+\r
+#testcasepage th {\r
+ border-bottom: 1px solid #000;\r
+ background-color: #AAAAAA;\r
+ border-left: 1px solid #000;\r
+ border-top: 1px solid #000;\r
+ color: #000;\r
+ font-weight: bold;\r
+ vertical-align: bottom;\r
+}\r
+\r
+#testcasepage th:last-child,\r
+#testcasepage td:last-child {\r
+ border-right: 1px solid #000;\r
+}\r
+\r
+#testcasepage td {\r
+ border-left: 1px solid;\r
+ font-weight: normal;\r
+ border-bottom: 1px solid;\r
+}\r
+\r
+#testcasepage td.yellow_rate {\r
+ background-color: #ffcc00;\r
+}\r
+\r
+#testcasepage td.green_rate {\r
+ background-color: #33cc33;\r
+}\r
+\r
+#testcasepage td.dgreen_rate {\r
+ background-color: #339933;\r
+}\r
+\r
+#testcasepage td.red_rate {\r
+ background-color: #FF3333;\r
+}\r
+\r
+#title table,\r
+#title tr,\r
+#title td {\r
+ border-left: none;\r
+ border-bottom: none;\r
+ text-align: center;\r
+}\r
+\r
+#title td:last-child {\r
+ border-right: none;\r
+}\r
+\r
+#testcasepage h1 {\r
+ font-size: 2em;\r
+ font-family: Arial, sans-serif;\r
+ font-weight: bold;\r
+ line-height: 1;\r
+ color: #000;\r
+ margin-bottom: 0.75em;\r
+ padding-top: 0.25em;\r
+ font-weight: bold;\r
+}\r
+\r
+#goTopBtn {\r
+ right: 0px;\r
+ bottom: 0px;\r
+ position: fixed; +position: absolute;\r
+ top: expression(parseInt(document.body.scrollTop) + document.body.clientHeight - 40);\r
+}\r
# pack tv package
os.system(LINUX_PERMISSION+' python3 pack.py '+'all')
+ remove_folder('../../release/csharp-tct_8.0_dotnet/csharp-tct_8.0_dotnet/package/tv')
os.system(LINUX_PERMISSION+' python3 pack.py '+'manual NUI')
+ remove_folder('../../release/csharp-tct_8.0_dotnet/csharp-tct_8.0_dotnet/package/tv')
# Copy mobile package folder to tv package.
# set tv_pkg_info.xml
# pack headed package
os.system(LINUX_PERMISSION + ' python3 pack.py ' + 'all')
+ remove_folder('../../release/csharp-tct_8.0_dotnet/csharp-tct_8.0_dotnet/package/headed')
os.system(LINUX_PERMISSION+' python3 pack.py '+'manual NUI')
+ remove_folder('../../release/csharp-tct_8.0_dotnet/csharp-tct_8.0_dotnet/package/headed')
# Copy mobile package folder to headed package.
# set headed_pkg_info.xml
# copy zip file
create_folder('../../release/'+TCT+'/'+TCT+'/package/mobile/')
+ create_folder('../../release/'+TCT+'/'+TCT+'/package/headed/')
+ create_folder('../../release/'+TCT+'/'+TCT+'/package/tv/')
shutil.copy(RELEASE_PATH+PACKAGE_NAME+'-8.0.zip', '../../release/'+TCT+'/'+TCT+'/package/mobile/')
+ shutil.copy(RELEASE_PATH+PACKAGE_NAME+'-8.0.zip', '../../release/'+TCT+'/'+TCT+'/package/headed/')
+ shutil.copy(RELEASE_PATH+PACKAGE_NAME+'-8.0.zip', '../../release/'+TCT+'/'+TCT+'/package/tv/')
# If TCT is installed , replace package
if os.path.isdir('/opt/tct/tizen_csharp_8.0'):
shutil.copy(RELEASE_PATH+PACKAGE_NAME+'-8.0.zip', '/opt/tct/tizen_csharp_8.0/packages/mobile')
+ shutil.copy(RELEASE_PATH+PACKAGE_NAME+'-8.0.zip', '/opt/tct/tizen_csharp_8.0/packages/headed')
+ shutil.copy(RELEASE_PATH+PACKAGE_NAME+'-8.0.zip', '/opt/tct/tizen_csharp_8.0/packages/tv')
# Remove bin folder.
remove_folder('bin')