From: Florian Krohm Date: Wed, 23 Jul 2025 20:20:54 +0000 (+0000) Subject: tests/x86_amd_features.c: also recognise GenuineIntel X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4810c14b5d;p=thirdparty%2Fvalgrind.git tests/x86_amd_features.c: also recognise GenuineIntel Enables running certain testcases on hardware that identifies itself as "GenuineIntel". --- diff --git a/tests/x86_amd64_features.c b/tests/x86_amd64_features.c index 488f155b6..5a95e06df 100644 --- a/tests/x86_amd64_features.c +++ b/tests/x86_amd64_features.c @@ -148,7 +148,8 @@ static Bool go(char* cpu) assert( !(cmask != 0 && dmask != 0 && bmask != 0) ); assert( !(cmask == 0 && dmask == 0 && bmask == 0) ); - if (require_amd && !vendorStringEquals("AuthenticAMD")) + if (require_amd && !vendorStringEquals("AuthenticAMD") && + !vendorStringEquals("GenuineIntel")) return FEATURE_NOT_PRESENT; // regardless of what that feature actually is