summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
author조웅석/Common Platform Lab(SR)/삼성전자 <ws77.cho@samsung.com>2022-02-09 14:37:26 +0900
committerGitHub Enterprise <noreply-CODE@samsung.com>2022-02-09 14:37:26 +0900
commitb4cc90d6abbcc2d5a1dbfbde241b01ffe01e0609 (patch)
treea22235a054417aa2bb8cb09ce083b87f70609e1c /tests
parent7a0f9a714f4c9b96001a4e6ee6a207df3a465ac5 (diff)
downloadlauncher-b4cc90d6abbcc2d5a1dbfbde241b01ffe01e0609.tar.gz
launcher-b4cc90d6abbcc2d5a1dbfbde241b01ffe01e0609.tar.bz2
launcher-b4cc90d6abbcc2d5a1dbfbde241b01ffe01e0609.zip
Remove code that create SPC NI first (#373)
* Add isR2RImage insteadof ildasm Use internal API to reduce unnecessary fork * Remove code that create SPC NI first. crossgen2 can do AOTC without SPC native image. So, remove unnecessary code.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/TCs/Utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TCs/Utils.py b/tests/TCs/Utils.py
index ae6a785..0a25754 100755
--- a/tests/TCs/Utils.py
+++ b/tests/TCs/Utils.py
@@ -114,7 +114,7 @@ def create_spc_ni():
raw = cmd(f"shell find {RUNTIME_DIR} -name {SPC_DLL}.Backup")
if f"{RUNTIME_DIR}{SPC_DLL}.Backup" not in raw:
raw = cmd(f"shell dotnettool --ni-dll {RUNTIME_DIR}{SPC_DLL}")
- if "System.Private.CoreLib.dll generated successfully." not in raw:
+ if "System.Private.CoreLib.ni.dll generated successfully." not in raw:
return "FAIL"
raw = cmd(f"shell find {RUNTIME_DIR} -name {SPC_DLL}.Backup")