From: Sanghoon Lee Date: Mon, 11 Feb 2019 07:02:17 +0000 (+0900) Subject: [Script][Non-ACR][Added NUI wearable suite into only wearable profile] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28f29f20978c6349fd5a9c1f93954c97b46cfb16;p=test%2Ftct%2Fcsharp%2Fapi.git [Script][Non-ACR][Added NUI wearable suite into only wearable profile] Change-Id: I4c4c51598658ab06ee3fd1d6e9d2d9f2795a6de2 --- diff --git a/tool/script/auto_binary.py b/tool/script/auto_binary.py index 79e19f3ea..00d22ea48 100755 --- a/tool/script/auto_binary.py +++ b/tool/script/auto_binary.py @@ -49,6 +49,7 @@ if __name__ == "__main__": os.system(LINUX_PERMISSION+' python pack.py '+'all') os.system(LINUX_PERMISSION+' python pack.py '+'auto ElmSharpWearable') os.system(LINUX_PERMISSION+' python pack.py '+'manual ElmSharpWearable') + os.system(LINUX_PERMISSION+' python pack.py '+'auto NUI.Wearable') # Copy mobile package folder to wearable package. # set wearable_pkg_info.xml diff --git a/tool/script/pack.py b/tool/script/pack.py index 288e2c124..7cfbe50ca 100755 --- a/tool/script/pack.py +++ b/tool/script/pack.py @@ -80,7 +80,10 @@ def folder_list(path): res = [] for name in os.listdir(path): if name.endswith('Tests'): - if "ElmSharpWearable" in name : + if "ElmSharpWearable" in name : + continue + + if "NUI.Wearable" in name : continue splitwords = name.split(".")