From: j-h.choi Date: Mon, 4 Jan 2021 05:51:18 +0000 (+0900) Subject: [TC Fixed] XSF.dll does not exist in specific target(RPI) X-Git-Tag: accepted/tizen/unified/20210125.073655~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cb4fe673358e004c64b67b9d5b519132c3bbb88e;p=platform%2Fcore%2Fdotnet%2Flauncher.git [TC Fixed] XSF.dll does not exist in specific target(RPI) Change-Id: Idadafa7619d58986696b0e057d62c81d1d84013d --- diff --git a/tests/TCs/3_PRELOAD/PRELOAD.py b/tests/TCs/3_PRELOAD/PRELOAD.py index c7c5508..611c866 100755 --- a/tests/TCs/3_PRELOAD/PRELOAD.py +++ b/tests/TCs/3_PRELOAD/PRELOAD.py @@ -36,14 +36,17 @@ def TC_01(): if len([l for l in raw.splitlines()]) == 0: return "FAIL : The assembly of .preload file should be loaded in the candidate process" + for preload in lines: + if ("XSF" in preload) and (f"{FRAMEWORK_DIR}XSF." not in raw): + return "FAIL : The assembly of XSF.preload file should be loaded in the candidate process" + if (f"{FRAMEWORK_DIR}Tizen.Runtime." not in raw) or \ (f"{FRAMEWORK_DIR}Tizen." not in raw) or \ (f"{FRAMEWORK_DIR}ElmSharp." not in raw) or \ (f"{FRAMEWORK_DIR}Tizen.Applications.Common." not in raw) or \ (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}XSF." not in raw): + (f"{FRAMEWORK_DIR}Tizen.System.Information." not in raw): return "FAIL : The assembly of .preload file should be loaded in the candidate process" return "PASS"