From: zy123.yuan Date: Fri, 20 Jan 2017 02:00:15 +0000 (+0800) Subject: [common][wgtapi02][change path for supporting global user] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d58b04541c3006acf60e0fa9512e5e88d5d5bf61;p=test%2Ftct%2Fweb%2Fapi.git [common][wgtapi02][change path for supporting global user] Change-Id: I6df9af50e979d94da880f645e38941f04bea8449 Signed-off-by: zy123.yuan --- diff --git a/common/tct-wgtapi02-w3c-tests/inst.wgt.py b/common/tct-wgtapi02-w3c-tests/inst.wgt.py index e735a701d..145211488 100755 --- a/common/tct-wgtapi02-w3c-tests/inst.wgt.py +++ b/common/tct-wgtapi02-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): @@ -55,8 +64,6 @@ def getUSERID(): return doCMD(cmd) - - def getPKGID(pkg_name=None): if PARAMETERS.mode == "SDB": cmd = "sdb -s %s shell %s" % ( @@ -106,6 +113,9 @@ def doRemoteCopy(src=None, dest=None): def uninstPKGs(): action_status = True for root, dirs, files in os.walk(SCRIPT_DIR): + if root.endswith("mediasrc"): + continue + for file in files: if file.endswith(".wgt"): pkg_id = getPKGID(os.path.basename(os.path.splitext(file)[0])) @@ -113,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 @@ -134,12 +144,15 @@ def instPKGs(): if return_code != 0: action_status = False for root, dirs, files in os.walk(SCRIPT_DIR): + if root.endswith("mediasrc"): + continue + for file in files: if file.endswith(".wgt"): 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: @@ -181,7 +194,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" @@ -199,6 +212,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/common/tct-wgtapi02-w3c-tests/tests.full.xml b/common/tct-wgtapi02-w3c-tests/tests.full.xml index 5acfc3d6f..787513e1f 100755 --- a/common/tct-wgtapi02-w3c-tests/tests.full.xml +++ b/common/tct-wgtapi02-w3c-tests/tests.full.xml @@ -5,7 +5,7 @@ - Make sure au.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/au.wgt + Make sure au.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/au.wgt Get the 'application id' of au.wgt with the command : wrt-launcher -l, then uninstall the au.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -29,7 +29,7 @@ - Make sure clear-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/clear-fires-event.wgt + Make sure clear-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/clear-fires-event.wgt Get the 'application id' of clear-fires-event.wgt with the command : wrt-launcher -l, then uninstall the clear-fires-event.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -49,7 +49,7 @@ - Make sure return-emtpy-strings.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/return-emtpy-strings.wgt + Make sure return-emtpy-strings.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/return-emtpy-strings.wgt Get the 'application id' of return-emtpy-strings.wgt with the command : wrt-launcher -l, then uninstall the return-emtpy-strings.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -69,7 +69,7 @@ - Make sure removeItem-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/removeItem-fires-event.wgt + Make sure removeItem-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/removeItem-fires-event.wgt Get the 'application id' of removeItem-fires-event.wgt with the command : wrt-launcher -l, then uninstall the removeItem-fires-event.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -89,7 +89,7 @@ - Make sure setItem-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/setItem-fires-event.wgt + Make sure setItem-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/setItem-fires-event.wgt Get the 'application id' of setItem-fires-event.wgt with the command : wrt-launcher -l, then uninstall the setItem-fires-event.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -109,7 +109,7 @@ - Make sure ai.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/ai.wgt + Make sure ai.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/ai.wgt Get the 'application id' of ai.wgt with the command : wrt-launcher -l, then uninstall the ai.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -129,7 +129,7 @@ - Make sure i18nlro01.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro01.wgt + Make sure i18nlro01.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro01.wgt Get the 'application id' of i18nlro01.wgt with the command : wrt-launcher -l, then uninstall the i18nlro01.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -149,7 +149,7 @@ - Make sure i18nlro02.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro02.wgt + Make sure i18nlro02.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro02.wgt Get the 'application id' of i18nlro02.wgt with the command : wrt-launcher -l, then uninstall the i18nlro02.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -169,7 +169,7 @@ - Make sure i18nlro06.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro06.wgt + Make sure i18nlro06.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro06.wgt Get the 'application id' of i18nlro06.wgt with the command : wrt-launcher -l, then uninstall the i18nlro06.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -189,7 +189,7 @@ - Make sure i18nlro10.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro10.wgt + Make sure i18nlro10.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro10.wgt Get the 'application id' of i18nlro10.wgt with the command : wrt-launcher -l, then uninstall the i18nlro10.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -209,7 +209,7 @@ - Make sure i18nlro14.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro14.wgt + Make sure i18nlro14.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro14.wgt Get the 'application id' of i18nlro14.wgt with the command : wrt-launcher -l, then uninstall the i18nlro14.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -229,7 +229,7 @@ - Make sure i18nlro15.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro15.wgt + Make sure i18nlro15.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro15.wgt Get the 'application id' of i18nlro15.wgt with the command : wrt-launcher -l, then uninstall the i18nlro15.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -249,7 +249,7 @@ - Make sure i18nlro19.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro19.wgt + Make sure i18nlro19.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro19.wgt Get the 'application id' of i18nlro19.wgt with the command : wrt-launcher -l, then uninstall the i18nlro19.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -269,7 +269,7 @@ - Make sure i18nlro20.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro20.wgt + Make sure i18nlro20.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro20.wgt Get the 'application id' of i18nlro20.wgt with the command : wrt-launcher -l, then uninstall the i18nlro20.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -289,7 +289,7 @@ - Make sure i18nlro21.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro21.wgt + Make sure i18nlro21.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro21.wgt Get the 'application id' of i18nlro21.wgt with the command : wrt-launcher -l, then uninstall the i18nlro21.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -309,7 +309,7 @@ - Make sure i18nlro22.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro22.wgt + Make sure i18nlro22.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro22.wgt Get the 'application id' of i18nlro22.wgt with the command : wrt-launcher -l, then uninstall the i18nlro22.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -329,7 +329,7 @@ - Make sure i18nltr06.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr06.wgt + Make sure i18nltr06.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr06.wgt Get the 'application id' of i18nltr06.wgt with the command : wrt-launcher -l, then uninstall the i18nltr06.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -349,7 +349,7 @@ - Make sure i18nltr10.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr10.wgt + Make sure i18nltr10.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr10.wgt Get the 'application id' of i18nltr10.wgt with the command : wrt-launcher -l, then uninstall the i18nltr10.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -369,7 +369,7 @@ - Make sure i18nltr20.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr20.wgt + Make sure i18nltr20.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr20.wgt Get the 'application id' of i18nltr20.wgt with the command : wrt-launcher -l, then uninstall the i18nltr20.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -389,7 +389,7 @@ - Make sure i18nltr21.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr21.wgt + Make sure i18nltr21.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr21.wgt Get the 'application id' of i18nltr21.wgt with the command : wrt-launcher -l, then uninstall the i18nltr21.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -409,7 +409,7 @@ - Make sure i18nltr22.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr22.wgt + Make sure i18nltr22.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr22.wgt Get the 'application id' of i18nltr22.wgt with the command : wrt-launcher -l, then uninstall the i18nltr22.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -429,7 +429,7 @@ - Make sure i18nrlo10.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo10.wgt + Make sure i18nrlo10.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo10.wgt Get the 'application id' of i18nrlo10.wgt with the command : wrt-launcher -l, then uninstall the i18nrlo10.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -449,7 +449,7 @@ - Make sure i18nrlo19.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo19.wgt + Make sure i18nrlo19.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo19.wgt Get the 'application id' of i18nrlo19.wgt with the command : wrt-launcher -l, then uninstall the i18nrlo19.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -469,7 +469,7 @@ - Make sure i18nrlo20.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo20.wgt + Make sure i18nrlo20.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo20.wgt Get the 'application id' of i18nrlo20.wgt with the command : wrt-launcher -l, then uninstall the i18nrlo20.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -489,7 +489,7 @@ - Make sure i18nrlo21.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo21.wgt + Make sure i18nrlo21.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo21.wgt Get the 'application id' of i18nrlo21.wgt with the command : wrt-launcher -l, then uninstall the i18nrlo21.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -509,7 +509,7 @@ - Make sure i18nrlo22.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo22.wgt + Make sure i18nrlo22.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo22.wgt Get the 'application id' of i18nrlo22.wgt with the command : wrt-launcher -l, then uninstall the i18nrlo22.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -529,7 +529,7 @@ - Make sure i18nrtl06.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl06.wgt + Make sure i18nrtl06.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl06.wgt Get the 'application id' of i18nrtl06.wgt with the command : wrt-launcher -l, then uninstall the i18nrtl06.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -549,7 +549,7 @@ - Make sure i18nrtl10.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl10.wgt + Make sure i18nrtl10.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl10.wgt Get the 'application id' of i18nrtl10.wgt with the command : wrt-launcher -l, then uninstall the i18nrtl10.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -569,7 +569,7 @@ - Make sure i18nrtl20.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl20.wgt + Make sure i18nrtl20.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl20.wgt Get the 'application id' of i18nrtl20.wgt with the command : wrt-launcher -l, then uninstall the i18nrtl20.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -589,7 +589,7 @@ - Make sure i18nrtl21.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl21.wgt + Make sure i18nrtl21.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl21.wgt Get the 'application id' of i18nrtl21.wgt with the command : wrt-launcher -l, then uninstall the i18nrtl21.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -609,7 +609,7 @@ - Make sure i18nltr44.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr44.wgt + Make sure i18nltr44.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr44.wgt Get the 'application id' of i18nltr44.wgt with the command : wrt-launcher -l, then uninstall the i18nltr44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -629,7 +629,7 @@ - Make sure i18nrtl44.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl44.wgt + Make sure i18nrtl44.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl44.wgt Get the 'application id' of i18nrtl44.wgt with the command : wrt-launcher -l, then uninstall the i18nrtl44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -649,7 +649,7 @@ - Make sure i18nlro44.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro44.wgt + Make sure i18nlro44.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro44.wgt Get the 'application id' of i18nlro44.wgt with the command : wrt-launcher -l, then uninstall the i18nlro44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' @@ -669,7 +669,7 @@ - Make sure i18nrlo44.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo44.wgt + Make sure i18nrlo44.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo44.wgt Get the 'application id' of i18nrlo44.wgt with the command : wrt-launcher -l, then uninstall the i18nrlo44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id' diff --git a/common/tct-wgtapi02-w3c-tests/tests.xml b/common/tct-wgtapi02-w3c-tests/tests.xml index ef2844c01..cf32d85d7 100755 --- a/common/tct-wgtapi02-w3c-tests/tests.xml +++ b/common/tct-wgtapi02-w3c-tests/tests.xml @@ -5,7 +5,7 @@ - Make sure au.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/au.wgt + Make sure au.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/au.wgt Get the $pkgid of au.wgt with the command : pkgcmd -l, then uninstall the au.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -22,7 +22,7 @@ - Make sure clear-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/clear-fires-event.wgt + Make sure clear-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/clear-fires-event.wgt Get the $pkgid of clear-fires-event.wgt with the command : pkgcmd -l, then uninstall the clear-fires-event.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -35,7 +35,7 @@ - Make sure return-emtpy-strings.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/return-emtpy-strings.wgt + Make sure return-emtpy-strings.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/return-emtpy-strings.wgt Get the $pkgid of return-emtpy-strings.wgt with the command : pkgcmd -l, then uninstall the return-emtpy-strings.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -48,7 +48,7 @@ - Make sure removeItem-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/removeItem-fires-event.wgt + Make sure removeItem-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/removeItem-fires-event.wgt Get the $pkgid of removeItem-fires-event.wgt with the command : pkgcmd -l, then uninstall the removeItem-fires-event.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -61,7 +61,7 @@ - Make sure setItem-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/setItem-fires-event.wgt + Make sure setItem-fires-event.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/setItem-fires-event.wgt Get the $pkgid of setItem-fires-event.wgt with the command : pkgcmd -l, then uninstall the setItem-fires-event.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -74,7 +74,7 @@ - Make sure ai.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/ai.wgt + Make sure ai.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/ai.wgt Get the $pkgid of ai.wgt with the command : pkgcmd -l, then uninstall the ai.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -87,7 +87,7 @@ - Make sure i18nlro01.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro01.wgt + Make sure i18nlro01.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro01.wgt Get the $pkgid of i18nlro01.wgt with the command : pkgcmd -l, then uninstall the i18nlro01.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -100,7 +100,7 @@ - Make sure i18nlro02.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro02.wgt + Make sure i18nlro02.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro02.wgt Get the $pkgid of i18nlro02.wgt with the command : pkgcmd -l, then uninstall the i18nlro02.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -113,7 +113,7 @@ - Make sure i18nlro06.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro06.wgt + Make sure i18nlro06.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro06.wgt Get the $pkgid of i18nlro06.wgt with the command : pkgcmd -l, then uninstall the i18nlro06.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -126,7 +126,7 @@ - Make sure i18nlro10.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro10.wgt + Make sure i18nlro10.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro10.wgt Get the $pkgid of i18nlro10.wgt with the command : pkgcmd -l, then uninstall the i18nlro10.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -139,7 +139,7 @@ - Make sure i18nlro14.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro14.wgt + Make sure i18nlro14.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro14.wgt Get the $pkgid of i18nlro14.wgt with the command : pkgcmd -l, then uninstall the i18nlro14.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -152,7 +152,7 @@ - Make sure i18nlro15.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro15.wgt + Make sure i18nlro15.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro15.wgt Get the $pkgid of i18nlro15.wgt with the command : pkgcmd -l, then uninstall the i18nlro15.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -165,7 +165,7 @@ - Make sure i18nlro19.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro19.wgt + Make sure i18nlro19.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro19.wgt Get the $pkgid of i18nlro19.wgt with the command : pkgcmd -l, then uninstall the i18nlro19.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -178,7 +178,7 @@ - Make sure i18nlro20.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro20.wgt + Make sure i18nlro20.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro20.wgt Get the $pkgid of i18nlro20.wgt with the command : pkgcmd -l, then uninstall the i18nlro20.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -191,7 +191,7 @@ - Make sure i18nlro21.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro21.wgt + Make sure i18nlro21.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro21.wgt Get the $pkgid of i18nlro21.wgt with the command : pkgcmd -l, then uninstall the i18nlro21.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -204,7 +204,7 @@ - Make sure i18nlro22.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro22.wgt + Make sure i18nlro22.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro22.wgt Get the $pkgid of i18nlro22.wgt with the command : pkgcmd -l, then uninstall the i18nlro22.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -217,7 +217,7 @@ - Make sure i18nltr06.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr06.wgt + Make sure i18nltr06.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr06.wgt Get the $pkgid of i18nltr06.wgt with the command : pkgcmd -l, then uninstall the i18nltr06.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -230,7 +230,7 @@ - Make sure i18nltr10.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr10.wgt + Make sure i18nltr10.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr10.wgt Get the $pkgid of i18nltr10.wgt with the command : pkgcmd -l, then uninstall the i18nltr10.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -243,7 +243,7 @@ - Make sure i18nltr20.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr20.wgt + Make sure i18nltr20.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr20.wgt Get the $pkgid of i18nltr20.wgt with the command : pkgcmd -l, then uninstall the i18nltr20.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -256,7 +256,7 @@ - Make sure i18nltr21.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr21.wgt + Make sure i18nltr21.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr21.wgt Get the $pkgid of i18nltr21.wgt with the command : pkgcmd -l, then uninstall the i18nltr21.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -269,7 +269,7 @@ - Make sure i18nltr22.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr22.wgt + Make sure i18nltr22.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr22.wgt Get the $pkgid of i18nltr22.wgt with the command : pkgcmd -l, then uninstall the i18nltr22.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -282,7 +282,7 @@ - Make sure i18nrlo10.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo10.wgt + Make sure i18nrlo10.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo10.wgt Get the $pkgid of i18nrlo10.wgt with the command : pkgcmd -l, then uninstall the i18nrlo10.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -295,7 +295,7 @@ - Make sure i18nrlo19.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo19.wgt + Make sure i18nrlo19.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo19.wgt Get the $pkgid of i18nrlo19.wgt with the command : pkgcmd -l, then uninstall the i18nrlo19.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -308,7 +308,7 @@ - Make sure i18nrlo20.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo20.wgt + Make sure i18nrlo20.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo20.wgt Get the $pkgid of i18nrlo20.wgt with the command : pkgcmd -l, then uninstall the i18nrlo20.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -321,7 +321,7 @@ - Make sure i18nrlo21.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo21.wgt + Make sure i18nrlo21.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo21.wgt Get the $pkgid of i18nrlo21.wgt with the command : pkgcmd -l, then uninstall the i18nrlo21.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -334,7 +334,7 @@ - Make sure i18nrlo22.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo22.wgt + Make sure i18nrlo22.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo22.wgt Get the $pkgid of i18nrlo22.wgt with the command : pkgcmd -l, then uninstall the i18nrlo22.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -347,7 +347,7 @@ - Make sure i18nrtl06.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl06.wgt + Make sure i18nrtl06.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl06.wgt Get the $pkgid of i18nrtl06.wgt with the command : pkgcmd -l, then uninstall the i18nrtl06.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -360,7 +360,7 @@ - Make sure i18nrtl10.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl10.wgt + Make sure i18nrtl10.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl10.wgt Get the $pkgid of i18nrtl10.wgt with the command : pkgcmd -l, then uninstall the i18nrtl10.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -373,7 +373,7 @@ - Make sure i18nrtl20.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl20.wgt + Make sure i18nrtl20.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl20.wgt Get the $pkgid of i18nrtl20.wgt with the command : pkgcmd -l, then uninstall the i18nrtl20.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -386,7 +386,7 @@ - Make sure i18nrtl21.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl21.wgt + Make sure i18nrtl21.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl21.wgt Get the $pkgid of i18nrtl21.wgt with the command : pkgcmd -l, then uninstall the i18nrtl21.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -399,7 +399,7 @@ - Make sure i18nltr44.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr44.wgt + Make sure i18nltr44.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nltr44.wgt Get the $pkgid of i18nltr44.wgt with the command : pkgcmd -l, then uninstall the i18nltr44.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -412,7 +412,7 @@ - Make sure i18nrtl44.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl44.wgt + Make sure i18nrtl44.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrtl44.wgt Get the $pkgid of i18nrtl44.wgt with the command : pkgcmd -l, then uninstall the i18nrtl44.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -425,7 +425,7 @@ - Make sure i18nlro44.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro44.wgt + Make sure i18nlro44.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nlro44.wgt Get the $pkgid of i18nlro44.wgt with the command : pkgcmd -l, then uninstall the i18nlro44.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -438,7 +438,7 @@ - Make sure i18nrlo44.wgt is installed with the command : pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo44.wgt + Make sure i18nrlo44.wgt is installed with the command : pkgcmd -i -t wgt -q -p {DEVICE_SUITE_TARGET_30}/tct/opt/tct-wgtapi02-w3c-tests/widgetinterface/w3c/i18nrlo44.wgt Get the $pkgid of i18nrlo44.wgt with the command : pkgcmd -l, then uninstall the i18nrlo44.wgt with the command : pkgcmd -u -t wgt -q -n $pkgid @@ -451,4 +451,4 @@ - \ No newline at end of file +