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

tests: [fix] L1TF tests - only test for Tiger Lake+ #112

Merged
Merged
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
4 changes: 2 additions & 2 deletions tests/x86_tests/acceptance.bats
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function intel_only() {

@test "Detection [meltdown-type]: #PF-present speculation" {
intel_only
if [ $CPU_MODEL -ge 170 ]; then
if [ $CPU_MODEL -ge 140 ]; then
skip
fi
assert_violation "$fuzz_opt -t $ASM_DIR/fault_load.asm -c $CONF_DIR/l1tf-p.yaml -i 5"
Expand All @@ -152,7 +152,7 @@ function intel_only() {

@test "Detection [meltdown-type]: #PF-writable speculation" {
intel_only
if [ $CPU_MODEL -ge 170 ]; then
if [ $CPU_MODEL -ge 140 ]; then
skip
fi
assert_violation "$fuzz_opt -t $ASM_DIR/fault_rmw.asm -c $CONF_DIR/l1tf-p.yaml -i 5"
Expand Down