Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cet/tests: correct one typo error #224

Merged
merged 2 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BM/cet/tests
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion BM/runtests
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Expand Down
Loading