From: j-h.choi Date: Mon, 12 May 2025 04:09:27 +0000 (+0900) Subject: Fix TAC_TC and PRELOAD_TC X-Git-Tag: accepted/tizen/unified/20250604.100251~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b44abde12f80ab85ed08c94b4eba88a37a2afe82;p=platform%2Fcore%2Fdotnet%2Flauncher.git Fix TAC_TC and PRELOAD_TC Change-Id: I958913e9926d9cc276fe30abaa52e6e43a8f03f8 --- diff --git a/tests/TCs/3_PRELOAD/PRELOAD.py b/tests/TCs/3_PRELOAD/PRELOAD.py index c1301a0..cb9cb43 100755 --- a/tests/TCs/3_PRELOAD/PRELOAD.py +++ b/tests/TCs/3_PRELOAD/PRELOAD.py @@ -46,7 +46,6 @@ def TC_01(): (f"{FRAMEWORK_DIR}Tizen.Applications.UI." not in raw) or \ (f"{FRAMEWORK_DIR}Tizen.Log." not in raw) or \ (f"{FRAMEWORK_DIR}Tizen.System.Information." not in raw) or \ - (f"{FRAMEWORK_DIR}Tizen.System.SystemSettings." not in raw) or \ (f"{FRAMEWORK_DIR}Tizen.NUI." not in raw) or \ (f"{FRAMEWORK_DIR}Tizen.NUI.Components." not in raw): return "FAIL : The assembly of .preload file should be loaded in the candidate process" diff --git a/tests/TCs/4_TAC/TAC_RO.py b/tests/TCs/4_TAC/TAC_RO.py index 4e9d725..607ab58 100755 --- a/tests/TCs/4_TAC/TAC_RO.py +++ b/tests/TCs/4_TAC/TAC_RO.py @@ -555,7 +555,8 @@ def main(): else: tc_array.append(funcMap[tc_num]) else: - tc_array = [TC_01, TC_02, TC_03, TC_04, TC_05, TC_06, TC_07, TC_08, TC_09] + # skip TC_07 + tc_array = [TC_01, TC_02, TC_03, TC_04, TC_05, TC_06, TC_08, TC_09] global serial if len(sys.argv) >= 2 and "TC_" not in sys.argv[1]: diff --git a/tests/TCs/4_TAC/TAC_RW.py b/tests/TCs/4_TAC/TAC_RW.py index cd04125..4fa9aba 100755 --- a/tests/TCs/4_TAC/TAC_RW.py +++ b/tests/TCs/4_TAC/TAC_RW.py @@ -548,7 +548,8 @@ def main(): else: tc_array.append(funcMap[tc_num]) else: - tc_array = [TC_01, TC_02, TC_03, TC_04, TC_05, TC_06, TC_07, TC_08, TC_09] + # skip TC_07 + tc_array = [TC_01, TC_02, TC_03, TC_04, TC_05, TC_06, TC_08, TC_09] global serial if len(sys.argv) >= 2 and "TC_" not in sys.argv[1]: