#include "clang/Basic/Builtins.h"
#include "gtest/gtest.h"
using namespace llvm;
TEST(CheckTargetFeaturesTest, checkBuiltinFeatures) {
auto doCheck = [](StringRef BuiltinFeatures, StringRef FuncFeatures) {
SmallVector<StringRef, 1> Features;
FuncFeatures.split(Features, ',');
StringMap<bool> SM;
for (StringRef F : Features)
SM.insert(std::make_pair(F, true));
return clang::Builtin::evaluateRequiredTargetFeatures(BuiltinFeatures, SM);
};
ASSERT_FALSE(doCheck("A,B,C,D", "A"));
ASSERT_TRUE(doCheck("A,B,C,D", "A,B,C,D"));
ASSERT_TRUE(doCheck("A|B", "A"));
ASSERT_FALSE(doCheck("A|B", "C"));
ASSERT_TRUE(doCheck("A|B,C|D", "A"));
ASSERT_FALSE(doCheck("(A|B),(C|D)", "A"));
ASSERT_TRUE(doCheck("(A|B),(C|D)", "A,C"));
ASSERT_FALSE(doCheck("(A,B|C),D", "A,C"));
ASSERT_FALSE(doCheck("(A,B|C),D", "A,D"));
ASSERT_TRUE(doCheck("(A,B|C),D", "C,D"));
ASSERT_TRUE(doCheck("(A,B|C),D", "A,B,D"));
ASSERT_FALSE(doCheck("(A,(B|C)),D", "C,D"));
ASSERT_TRUE(doCheck("(A,(B|C)),D", "A,C,D"));
}