From: zy123.yuan Date: Fri, 20 Jan 2017 02:18:12 +0000 (+0800) Subject: [tv][widget02][sync test case from suprem] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78d35a6647f01b0281d833fee75f8bead90bfb5e;p=test%2Ftct%2Fweb%2Fapi.git [tv][widget02][sync test case from suprem] - sign unsigned test widget - change path for supporting global user Change-Id: Icb7a9420c5088b9f61f18d650d773ee6ea4dbe00 Signed-off-by: zy123.yuan --- diff --git a/tv/tct-widget02-w3c-tests/inst.wgt.py b/tv/tct-widget02-w3c-tests/inst.wgt.py index 7cdee07aa..31bd49daf 100755 --- a/tv/tct-widget02-w3c-tests/inst.wgt.py +++ b/tv/tct-widget02-w3c-tests/inst.wgt.py @@ -7,7 +7,7 @@ import time import sys import subprocess import string -from optparse import OptionParser, make_option +from optparse import OptionParser, make_option import ConfigParser @@ -20,6 +20,15 @@ tct_parser = ConfigParser.ConfigParser() tct_parser.read(TCT_CONFIG_FILE) SRC_DIR = tct_parser.get('DEVICE', 'DEVICE_SUITE_TARGET_30') PKG_SRC_DIR = "%s/tct/opt/%s" % (SRC_DIR, PKG_NAME) +EXECUTION_MODE_30 = tct_parser.get('DEVICE', 'DEVICE_EXECUTION_MODE_30') +ADMIN_USER_30 = tct_parser.get('DEVICE', 'DEVICE_ADMIN_USER_30') + +def userCheck(): + global GLOVAL_OPT + if ADMIN_USER_30 == EXECUTION_MODE_30: + GLOVAL_OPT="--global" + else: + GLOVAL_OPT="" def doCMD(cmd): @@ -114,7 +123,7 @@ def uninstPKGs(): action_status = False continue (return_code, output) = doRemoteCMD( - "pkgcmd -u -t wgt -q -n %s" % pkg_id) + "pkgcmd %s -q -u -n %s" % (GLOVAL_OPT, pkg_id)) for line in output: if "Failure" in line: action_status = False @@ -143,7 +152,7 @@ def instPKGs(): # if not doRemoteCopy(os.path.join(root, file), "%s/%s" % (SRC_DIR, file)): # action_status = False # (return_code, output) = doRemoteCMD( -# "pkgcmd -i -t wgt -q -p %s/%s" % (SRC_DIR, file)) +# "pkgcmd %s -i -t wgt -q -p %s/%s" % (GLOVAL_OPT, SRC_DIR, file)) # doRemoteCMD("rm -rf %s/%s" % (SRC_DIR, file)) # for line in output: # if "Failure" in line: @@ -191,7 +200,7 @@ def main(): sys.exit(1) if not PARAMETERS.user: - PARAMETERS.user = "owner" + PARAMETERS.user = EXECUTION_MODE_30 if not PARAMETERS.mode: PARAMETERS.mode = "SDB" @@ -209,6 +218,8 @@ def main(): print "No device provided" sys.exit(1) + userCheck() + user_info = getUSERID() re_code = user_info[0] if re_code == 0 : diff --git a/tv/tct-widget02-w3c-tests/scripts/xwalk_common.sh b/tv/tct-widget02-w3c-tests/scripts/xwalk_common.sh index b2b9d6674..8749d2454 100755 --- a/tv/tct-widget02-w3c-tests/scripts/xwalk_common.sh +++ b/tv/tct-widget02-w3c-tests/scripts/xwalk_common.sh @@ -30,7 +30,8 @@ ###below functions just for crosswalk ivi testing### -##usage: install_app $app_path(e.g. uninstall_app /home/owner/share/tct/opt/tct-sp02-wrt-tests/tct-sp02-wrt-tests.wgt)## +##usage: install_app $app_path(e.g. admin user: install_app /home/usr/globalapps/tct/opt/tct-sp02-wrt-tests/tct-sp02-wrt-tests.wgt + ##local user: install_app /home/{user}/apps_rw/tct/opt/tct-sp02-wrt-tests/tct-sp02-wrt-tests.wgt)## function install_app(){ pkgcmd -i -t wgt -q -p $1 } diff --git a/tv/tct-widget02-w3c-tests/tests.full.xml b/tv/tct-widget02-w3c-tests/tests.full.xml index 4b270e29d..98fd8b28f 100755 --- a/tv/tct-widget02-w3c-tests/tests.full.xml +++ b/tv/tct-widget02-w3c-tests/tests.full.xml @@ -5,7 +5,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_011.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_011.wgt @@ -17,7 +17,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_018.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_018.wgt @@ -29,7 +29,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_030.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_030.wgt @@ -41,7 +41,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_049.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_049.wgt @@ -53,7 +53,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_055.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_055.wgt @@ -65,7 +65,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_064.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_064.wgt @@ -77,7 +77,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_074.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_074.wgt @@ -89,7 +89,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_080.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_080.wgt @@ -101,7 +101,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_086.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_086.wgt @@ -113,7 +113,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_088.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_088.wgt @@ -125,7 +125,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_110.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_110.wgt @@ -137,7 +137,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_114.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_114.wgt @@ -149,7 +149,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_116.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_116.wgt @@ -161,7 +161,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_119.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_119.wgt @@ -173,7 +173,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_133.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_133.wgt @@ -185,7 +185,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_137.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_137.wgt @@ -197,7 +197,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_140.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_140.wgt @@ -209,7 +209,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_201.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_201.wgt @@ -221,7 +221,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_269.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_269.wgt @@ -233,7 +233,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_271.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_271.wgt @@ -245,7 +245,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_389.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_389.wgt @@ -257,7 +257,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_1.wgt @@ -269,7 +269,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_2.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_2.wgt @@ -281,7 +281,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_4.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_4.wgt @@ -293,7 +293,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore002.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore002.wgt @@ -305,7 +305,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003.wgt @@ -317,7 +317,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003_1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003_1.wgt @@ -329,7 +329,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004.wgt @@ -341,7 +341,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_1.wgt @@ -353,7 +353,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_2.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_2.wgt @@ -365,7 +365,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_3.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_3.wgt @@ -377,7 +377,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_7.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_7.wgt @@ -389,7 +389,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore005.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore005.wgt @@ -401,7 +401,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore006.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore006.wgt @@ -413,7 +413,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore008.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore008.wgt @@ -425,7 +425,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_001 + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_001 @@ -437,7 +437,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_002.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_002.wgt @@ -449,7 +449,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_003.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_003.wgt @@ -461,7 +461,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_004.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_004.wgt @@ -473,7 +473,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_005.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_005.wgt @@ -485,7 +485,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_006.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_006.wgt @@ -497,7 +497,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_007.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_007.wgt @@ -509,7 +509,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_008.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_008.wgt @@ -525,7 +525,7 @@ Get the 'package id' of TC002.wgt with the command : app_launcher -l, then uninstall the TC002.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC002.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC002.wgt Widget application is able to be installed successfully. @@ -557,7 +557,7 @@ Get the 'package id' of TC003.wgt with the command : app_launcher -l, then uninstall the TC003.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003.wgt Widget application is able to be installed successfully. @@ -589,7 +589,7 @@ Get the 'package id' of TC003_1.wgt with the command : app_launcher -l, then uninstall the TC003_1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003_1.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003_1.wgt Widget application is able to be installed successfully. @@ -621,7 +621,7 @@ Get the 'package id' of TC006_1.wgt with the command : app_launcher -l, then uninstall the TC006_1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006_1.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006_1.wgt Widget application is able to be installed successfully. @@ -645,7 +645,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_1.wgt @@ -657,7 +657,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_2.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_2.wgt @@ -673,7 +673,7 @@ Get the 'package id' of TC011.wgt with the command : app_launcher -l, then uninstall the TC011.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC011.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC011.wgt Widget application is able to be installed successfully. @@ -697,7 +697,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_1.wgt @@ -709,7 +709,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_2.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_2.wgt @@ -725,7 +725,7 @@ Get the 'package id' of TC017_1.wgt with the command : app_launcher -l, then uninstall the TC017_1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC017_1.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC017_1.wgt Widget application is able to be installed successfully. @@ -749,7 +749,7 @@ Get the 'package id' of TC019.wgt with the command : app_launcher -l, then uninstall the TC019.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC019.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC019.wgt Widget application is able to be installed successfully. @@ -773,7 +773,7 @@ Get the 'package id' of TC020.wgt with the command : app_launcher -l, then uninstall the TC020.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC020.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC020.wgt Widget application is able to be installed successfully. @@ -797,7 +797,7 @@ Get the 'package id' of TC046.wgt with the command : app_launcher -l, then uninstall the TC046.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC046.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC046.wgt Widget application is able to be installed successfully. @@ -821,7 +821,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b5.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b5.wgt @@ -833,7 +833,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh br.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh br.wgt @@ -849,7 +849,7 @@ Get the 'package id' of bs.wgt with the command : app_launcher -l, then uninstall the bs.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bs.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bs.wgt Widget application is able to be installed successfully. @@ -873,7 +873,7 @@ Get the 'package id' of d0.wgt with the command : app_launcher -l, then uninstall the d0.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d0.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d0.wgt Widget application is able to be installed successfully. @@ -897,7 +897,7 @@ Get the 'package id' of db.wgt with the command : app_launcher -l, then uninstall the db.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/db.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/db.wgt Widget application is able to be installed successfully. @@ -917,7 +917,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dk.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dk.wgt @@ -933,7 +933,7 @@ Get the 'package id' of e4.wgt with the command : app_launcher -l, then uninstall the e4.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e4.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e4.wgt Widget application is able to be installed successfully. @@ -957,7 +957,7 @@ Get the 'package id' of e5.wgt with the command : app_launcher -l, then uninstall the e5.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e5.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e5.wgt Widget application is able to be installed successfully. @@ -981,7 +981,7 @@ Get the 'package id' of e6.wgt with the command : app_launcher -l, then uninstall the e6.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e6.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e6.wgt Widget application is able to be installed successfully. @@ -1005,7 +1005,7 @@ Get the 'package id' of e7.wgt with the command : app_launcher -l, then uninstall the e7.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e7.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e7.wgt Widget application is able to be installed successfully. @@ -1029,7 +1029,7 @@ Get the 'package id' of viewh.wgt with the command : app_launcher -l, then uninstall the viewh.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewh.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewh.wgt Widget application is able to be installed successfully. @@ -1053,7 +1053,7 @@ Get the 'package id' of z1.wgt with the command : app_launcher -l, then uninstall the z1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z1.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z1.wgt Widget application is able to be installed successfully. @@ -1077,7 +1077,7 @@ Get the 'package id' of z2.wgt with the command : app_launcher -l, then uninstall the z2.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z2.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z2.wgt Widget application is able to be installed successfully. @@ -1097,7 +1097,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh d9.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh d9.wgt @@ -1113,7 +1113,7 @@ Get the 'package id' of dc.wgt with the command : app_launcher -l, then uninstall the dc.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/dc.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/dc.wgt Widget application is able to be installed successfully. @@ -1133,7 +1133,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dl.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dl.wgt @@ -1145,7 +1145,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh dlocignore00.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh dlocignore00.wgt @@ -1157,7 +1157,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bh.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bh.wgt @@ -1169,7 +1169,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bu.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bu.wgt @@ -1181,7 +1181,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c1.wgt @@ -1193,7 +1193,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c2.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c2.wgt @@ -1205,7 +1205,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c3.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c3.wgt @@ -1221,7 +1221,7 @@ Get the 'package id' of d2.wgt with the command : app_launcher -l, then uninstall the d2.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d2.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d2.wgt Widget application is able to be installed successfully. @@ -1245,7 +1245,7 @@ Get the 'package id' of cc.wgt with the command : app_launcher -l, then uninstall the cc.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/cc.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/cc.wgt Widget application is able to be installed successfully. @@ -1269,7 +1269,7 @@ Get the 'package id' of bq.wgt with the command : app_launcher -l, then uninstall the bq.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bq.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bq.wgt Widget application is able to be installed successfully. @@ -1289,7 +1289,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh aa.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh aa.wgt @@ -1301,7 +1301,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ab.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ab.wgt @@ -1313,7 +1313,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ac.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ac.wgt @@ -1325,7 +1325,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b0.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b0.wgt @@ -1337,7 +1337,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bg.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bg.wgt @@ -1353,7 +1353,7 @@ Get the 'package id' of am.wgt with the command : app_launcher -l, then uninstall the am.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/am.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/am.wgt Widget application is able to be installed successfully. @@ -1377,7 +1377,7 @@ Get the 'package id' of aw.wgt with the command : app_launcher -l, then uninstall the aw.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/aw.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/aw.wgt Widget application is able to be installed successfully. @@ -1401,7 +1401,7 @@ Get the 'package id' of ta-de-000.wgt with the command : app_launcher -l, then uninstall the ta-de-000.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt Widget application is able to be installed successfully. @@ -1421,7 +1421,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh split.wgt.001 + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh split.wgt.001 @@ -1433,7 +1433,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dp.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dp.wgt @@ -1445,7 +1445,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dq.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dq.wgt @@ -1457,7 +1457,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dv.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dv.wgt @@ -1469,7 +1469,7 @@ - /home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dw.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dw.wgt @@ -1485,7 +1485,7 @@ Get the 'package id' of gb.wgt with the command : app_launcher -l, then uninstall the gb.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/gb.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/gb.wgt Widget application is able to be installed successfully. @@ -1509,7 +1509,7 @@ Get the 'package id' of i18nlro26.wgt with the command : app_launcher -l, then uninstall the i18nlro26.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro26.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro26.wgt Widget application is able to be installed successfully. @@ -1533,7 +1533,7 @@ Get the 'application id' of i18nlro27.wgt with the command : app_launcher -l, then uninstall the i18nlro27.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro27.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro27.wgt Widget application is able to be installed successfully. @@ -1557,7 +1557,7 @@ Get the 'application id' of i18nlro28.wgt with the command : app_launcher -l, then uninstall the i18nlro28.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro28.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro28.wgt Widget application is able to be installed successfully. @@ -1581,7 +1581,7 @@ Get the 'application id' of i18nltr26.wgt with the command : app_launcher -l, then uninstall the i18nltr26.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr26.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr26.wgt Widget application is able to be installed successfully. @@ -1605,7 +1605,7 @@ Get the 'application id' of i18nltr27.wgt with the command : app_launcher -l, then uninstall the i18nltr27.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr27.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr27.wgt Widget application is able to be installed successfully. @@ -1629,7 +1629,7 @@ Get the 'application id' of i18nltr28.wgt with the command : app_launcher -l, then uninstall the i18nltr28.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt Widget application is able to be installed successfully. @@ -1653,7 +1653,7 @@ Get the 'application id' of i18nrlo26.wgt with the command : app_launcher -l, then uninstall the i18nrlo26.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt Widget application is able to be installed successfully. @@ -1677,7 +1677,7 @@ Get the 'application id' of i18nrlo27.wgt with the command : app_launcher -l, then uninstall the i18nrlo27.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt Widget application is able to be installed successfully. @@ -1701,7 +1701,7 @@ Get the 'application id' of i18nrlo28.wgt with the command : app_launcher -l, then uninstall the i18nrlo28.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo28.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo28.wgt Widget application is able to be installed successfully. @@ -1725,7 +1725,7 @@ Get the 'application id' of i18nrtl26.wgt with the command : app_launcher -l, then uninstall the i18nrtl26.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl26.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl26.wgt Widget application is able to be installed successfully. @@ -1749,7 +1749,7 @@ Get the 'application id' of i18nrtl27.wgt with the command : app_launcher -l, then uninstall the i18nrtl27.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl27.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl27.wgt Widget application is able to be installed successfully. @@ -1773,7 +1773,7 @@ Get the 'application id' of i18nrtl28.wgt with the command : app_launcher -l, then uninstall the i18nrtl28.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl28.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl28.wgt Widget application is able to be installed successfully. @@ -1797,7 +1797,7 @@ Get the 'application id' of i18nrtl43.wgt with the command : app_launcher -l, then uninstall the i18nrtl43.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl43.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl43.wgt Widget application is able to be installed successfully. @@ -1821,7 +1821,7 @@ Get the 'application id' of viewb.wgt with the command : app_launcher -l, then uninstall the viewb.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewb.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewb.wgt Widget application is able to be installed successfully. @@ -1845,7 +1845,7 @@ Get the 'application id' of viewf.wgt with the command : app_launcher -l, then uninstall the viewf.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewf.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewf.wgt Widget application is able to be installed successfully. @@ -1869,7 +1869,7 @@ Get the 'application id' of viewg.wgt with the command : app_launcher -l, then uninstall the viewg.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewg.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewg.wgt Widget application is able to be installed successfully. @@ -1893,7 +1893,7 @@ Get the 'application id' of viewi.wgt with the command : app_launcher -l, then uninstall the viewi.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewi.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewi.wgt Widget application is able to be installed successfully. @@ -1917,7 +1917,7 @@ Get the 'application id' of xx.wgt with the command : app_launcher -l, then uninstall the xx.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/xx.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/xx.wgt Widget application is able to be installed successfully. @@ -1941,7 +1941,7 @@ Get the 'application id' of ta-de-001.wgt with the command : app_launcher -l, then uninstall the ta-de-001.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-001.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-001.wgt Widget application is able to be installed successfully. @@ -1965,7 +1965,7 @@ Get the 'application id' of ta-de-002.wgt with the command : app_launcher -l, then uninstall the ta-de-002.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-002.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-002.wgt Widget application is able to be installed successfully. @@ -1989,7 +1989,7 @@ Get the 'application id' of ta-de-003.wgt with the command : app_launcher -l, then uninstall the ta-de-003.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-003.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-003.wgt Widget application is able to be installed successfully. @@ -2013,7 +2013,7 @@ Get the 'application id' of ta-de-004.wgt with the command : app_launcher -l, then uninstall the ta-de-004.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-004.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-004.wgt Widget application is able to be installed successfully. @@ -2037,7 +2037,7 @@ Get the 'application id' of as.wgt with the command : app_launcher -l, then uninstall the as.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/as.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/as.wgt Widget application is able to be installed successfully. @@ -2061,7 +2061,7 @@ Get the 'application id' of ao.wgt with the command : app_launcher -l, then uninstall the ao.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ao.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ao.wgt Widget application is able to be installed successfully. @@ -2085,7 +2085,7 @@ Get the 'application id' of d3.wgt with the command : app_launcher -l, then uninstall the d3.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d3.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d3.wgt Widget application is able to be installed successfully. @@ -2109,7 +2109,7 @@ Get the 'application id' of d8.wgt with the command : app_launcher -l, then uninstall the d8.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d8.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d8.wgt Widget application is able to be installed successfully. @@ -2133,7 +2133,7 @@ Get the 'application id' of d7.wgt with the command : app_launcher -l, then uninstall the d7.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d7.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d7.wgt Widget application is able to be installed successfully. @@ -2157,7 +2157,7 @@ Get the 'application id' of oa.wgt with the command : app_launcher -l, then uninstall the oa.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/oa.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/oa.wgt Widget application is able to be installed successfully. @@ -2181,7 +2181,7 @@ Get the 'application id' of i18nlro01.wgt with the command : app_launcher -l, then uninstall the i18nlro01.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro01.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro01.wgt Widget application is able to be installed successfully. @@ -2205,7 +2205,7 @@ Get the 'application id' of i18nrtl44.wgt with the command : app_launcher -l, then uninstall the i18nrtl44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl44.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl44.wgt Widget application is able to be installed successfully. @@ -2229,7 +2229,7 @@ Get the 'application id' of i18nlro44.wgt with the command : app_launcher -l, then uninstall the i18nlro44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro44.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro44.wgt Widget application is able to be installed successfully. @@ -2253,7 +2253,7 @@ Get the 'application id' of i18nltr44.wgt with the command : app_launcher -l, then uninstall the i18nltr44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt Widget application is able to be installed successfully. @@ -2277,7 +2277,7 @@ Get the 'application id' of i18nrlo44.wgt with the command : app_launcher -l, then uninstall the i18nrlo44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' - Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo44.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo44.wgt Widget application is able to be installed successfully. diff --git a/tv/tct-widget02-w3c-tests/tests.xml b/tv/tct-widget02-w3c-tests/tests.xml index 4981301f8..c0b48b071 100755 --- a/tv/tct-widget02-w3c-tests/tests.xml +++ b/tv/tct-widget02-w3c-tests/tests.xml @@ -5,217 +5,217 @@ - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_011.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_011.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_018.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_018.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_030.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_030.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_049.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_049.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_install.sh WAC_PAKCONF_055.wGt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_install.sh WAC_PAKCONF_055.wGt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_064.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_064.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_074.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_074.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_080.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_080.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_086.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_086.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_088.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_088.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_110.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_110.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_114.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_114.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_116.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_116.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_119.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_119.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_133.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_133.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_137.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_137.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_140.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_140.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_201.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_201.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_269.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_269.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_271.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_271.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_389.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_389.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_1.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_2.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_2.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_4.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_4.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore002.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore002.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003_1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003_1.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_1.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_2.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_2.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_3.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_3.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_7.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_7.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore005.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore005.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore006.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore006.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore008.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore008.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_001.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_001.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_002.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_002.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_003.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_003.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_004.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_004.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_005.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_005.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_006.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_006.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_007.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_007.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_008.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_008.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_1.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_2.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_2.wgt @@ -356,7 +356,7 @@ connect to internet - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC017_1.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC017_1.wgt Widget application is able to be installed successfully. @@ -372,7 +372,7 @@ connect to internet - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC019.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC019.wgt Widget application is able to be installed successfully. @@ -388,7 +388,7 @@ connect to internet - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC020.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC020.wgt Widget application is able to be installed successfully. @@ -405,7 +405,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC046.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC046.wgt Widget application is able to be installed successfully. @@ -422,12 +422,12 @@ --> - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b5.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b5.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh br.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh br.wgt @@ -435,7 +435,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bs.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bs.wgt Widget application is able to be installed successfully. @@ -451,7 +451,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d0.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d0.wgt Widget application is able to be installed successfully. @@ -467,7 +467,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/db.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/db.wgt Widget application is able to be installed successfully. @@ -480,7 +480,7 @@ - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dk.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dk.wgt @@ -488,7 +488,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e4.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e4.wgt Widget application is able to be installed successfully. @@ -504,7 +504,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e5.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e5.wgt Widget application is able to be installed successfully. @@ -520,7 +520,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e6.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e6.wgt Widget application is able to be installed successfully. @@ -536,7 +536,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e7.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e7.wgt Widget application is able to be installed successfully. @@ -553,7 +553,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewh.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewh.wgt Widget application is able to be installed successfully. @@ -569,7 +569,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z1.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z1.wgt Widget application is able to be installed successfully. @@ -585,7 +585,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z2.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z2.wgt Widget application is able to be installed successfully. @@ -598,7 +598,7 @@ - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh d9.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh d9.wgt @@ -606,7 +606,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/dc.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/dc.wgt Widget application is able to be installed successfully. @@ -619,37 +619,37 @@ - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dl.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dl.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh dlocignore00.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh dlocignore00.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bh.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bh.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bu.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bu.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c1.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c1.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c2.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c2.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c3.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c3.wgt @@ -657,7 +657,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/cc.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/cc.wgt Widget application is able to be installed successfully. @@ -673,7 +673,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bq.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bq.wgt Widget application is able to be installed successfully. @@ -686,27 +686,27 @@ - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh aa.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh aa.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ab.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ab.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ac.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ac.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b0.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b0.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bg.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bg.wgt @@ -714,7 +714,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/am.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/am.wgt Widget application is able to be installed successfully. @@ -730,7 +730,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/aw.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/aw.wgt Widget application is able to be installed successfully. @@ -746,7 +746,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt Widget application is able to be installed successfully. @@ -759,27 +759,27 @@ - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh split.wgt.001 + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh split.wgt.001 - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dp.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dp.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dq.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dq.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dv.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dv.wgt - owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dw.wgt + {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dw.wgt @@ -787,7 +787,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/gb.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/gb.wgt Widget application is able to be installed successfully. @@ -803,7 +803,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro26.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro26.wgt Widget application is able to be installed successfully. @@ -819,7 +819,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro27.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro27.wgt Widget application is able to be installed successfully. @@ -835,7 +835,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro28.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro28.wgt Widget application is able to be installed successfully. @@ -851,7 +851,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr26.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr26.wgt Widget application is able to be installed successfully. @@ -867,7 +867,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr27.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr27.wgt Widget application is able to be installed successfully. @@ -883,7 +883,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt Widget application is able to be installed successfully. @@ -899,7 +899,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt Widget application is able to be installed successfully. @@ -915,7 +915,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt Widget application is able to be installed successfully. @@ -931,7 +931,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo28.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo28.wgt Widget application is able to be installed successfully. @@ -947,7 +947,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl26.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl26.wgt Widget application is able to be installed successfully. @@ -963,7 +963,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl27.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl27.wgt Widget application is able to be installed successfully. @@ -979,7 +979,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl28.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl28.wgt Widget application is able to be installed successfully. @@ -996,7 +996,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl43.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl43.wgt Widget application is able to be installed successfully. @@ -1013,7 +1013,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewb.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewb.wgt Widget application is able to be installed successfully. @@ -1029,7 +1029,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewf.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewf.wgt Widget application is able to be installed successfully. @@ -1045,7 +1045,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewg.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewg.wgt Widget application is able to be installed successfully. @@ -1061,7 +1061,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewi.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewi.wgt Widget application is able to be installed successfully. @@ -1077,7 +1077,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/xx.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/xx.wgt Widget application is able to be installed successfully. @@ -1093,7 +1093,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-001.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-001.wgt Widget application is able to be installed successfully. @@ -1109,7 +1109,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-002.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-002.wgt Widget application is able to be installed successfully. @@ -1125,7 +1125,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-003.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-003.wgt Widget application is able to be installed successfully. @@ -1141,7 +1141,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-004.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-004.wgt Widget application is able to be installed successfully. @@ -1157,7 +1157,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/as.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/as.wgt Widget application is able to be installed successfully. @@ -1173,7 +1173,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ao.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ao.wgt Widget application is able to be installed successfully. @@ -1189,7 +1189,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d3.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d3.wgt Widget application is able to be installed successfully. @@ -1205,7 +1205,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d8.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d8.wgt Widget application is able to be installed successfully. @@ -1221,7 +1221,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d7.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d7.wgt Widget application is able to be installed successfully. @@ -1237,7 +1237,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/oa.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/oa.wgt Widget application is able to be installed successfully. @@ -1253,7 +1253,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro01.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro01.wgt Widget application is able to be installed successfully. @@ -1269,7 +1269,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl44.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl44.wgt Widget application is able to be installed successfully. @@ -1285,7 +1285,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro44.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro44.wgt Widget application is able to be installed successfully. @@ -1301,7 +1301,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt Widget application is able to be installed successfully. @@ -1317,7 +1317,7 @@ - Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo44.wgt + Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo44.wgt Widget application is able to be installed successfully. diff --git a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt index 041686cfd..3760e2a93 100755 Binary files a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt and b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt differ diff --git a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt index 3ba231c1c..079e85390 100755 Binary files a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt and b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt differ diff --git a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt index 7011241ae..ae6493c04 100755 Binary files a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt and b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt differ diff --git a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt index bd03f205a..04a56899f 100755 Binary files a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt and b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt differ diff --git a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt index e1bd51956..c84b49f86 100755 Binary files a/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt and b/tv/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt differ