From 7d989e344883c43265544b01619cda37ce08fd5d Mon Sep 17 00:00:00 2001 From: Vicky Min Date: Thu, 9 Mar 2023 23:46:37 +0000 Subject: [PATCH] Filter RSA 3072 tests We want to transition to using GTEST_SKIP to skip unit tests instead of modifying the GTEST_FILTER variable. This does so for tests that require RSA 3072 support. Bug: 251240681 Change-Id: I048d31e25316d621771efb5d472f651bff40bf75 --- libwvdrmengine/oemcrypto/test/oec_device_features.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/libwvdrmengine/oemcrypto/test/oec_device_features.cpp b/libwvdrmengine/oemcrypto/test/oec_device_features.cpp index 27c2951a..e6affcac 100644 --- a/libwvdrmengine/oemcrypto/test/oec_device_features.cpp +++ b/libwvdrmengine/oemcrypto/test/oec_device_features.cpp @@ -149,7 +149,6 @@ std::string DeviceFeatures::RestrictFilter(const std::string& initial_filter) { std::string filter = initial_filter; // clang-format off if (!generic_crypto) FilterOut(&filter, "*GenericCrypto*"); - if (!supports_rsa_3072) FilterOut(&filter, "*RSAKey3072*"); if (api_version < 17) FilterOut(&filter, "*API17*"); if (api_version < 18) FilterOut(&filter, "*API18*"); // clang-format on