From 8fd7afb235a17b055567559c47ff190e406904eb Mon Sep 17 00:00:00 2001 From: Pengfei Xu Date: Wed, 15 May 2024 14:17:15 +0800 Subject: [PATCH 1/2] cet/tests: correct one typo error Signed-off-by: Pengfei Xu --- BM/cet/tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BM/cet/tests b/BM/cet/tests index 5c02b66c..e7875265 100755 --- a/BM/cet/tests +++ b/BM/cet/tests @@ -1,6 +1,6 @@ # This file collects the CET(Control-flow Enforcement Technology) tests on # IntelĀ® Architecture-based platforms. -# @hw_dep: cpuid_check 7 0 0 0 c 7 @ CPU doesn't support CET SHSTK CPUID.(EAX=07H,ECX=01H):ECX[bit 7] +# @hw_dep: cpuid_check 7 0 0 0 c 7 @ CPU doesn't support CET SHSTK CPUID.(EAX=07H,ECX=0H):ECX[bit 7] # @other_dep: general_test.sh -t kconfig -k "CONFIG_X86_USER_SHADOW_STACK=y" # @other_warn: quick_test @ Glibc could not support CET From bd3b163e682b427a709ebeb70c7d805168d18691 Mon Sep 17 00:00:00 2001 From: Pengfei Xu Date: Wed, 15 May 2024 17:03:37 +0800 Subject: [PATCH 2/2] runtests: improve clear prompt printing for uncompiled situation Signed-off-by: Pengfei Xu --- BM/runtests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BM/runtests b/BM/runtests index 8d17c28a..4c37ff01 100755 --- a/BM/runtests +++ b/BM/runtests @@ -117,7 +117,7 @@ check_dep_cmd() { [[ "$dep_app" == *".sh" ]] || { app=$(which "$dep_app" 2>/dev/null) [[ -z "$app" ]] && { - REASON="The dependent app:$dep_app was not found and needs to be compiled first!" + REASON="The dependent app:$dep_app was not found and make under lkvs/BM first!" return "$BLOCK_CODE" } }