//===- llvm/unittest/DebugInfo/PDB/PDBVariantTest.cpp ---------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "gtest/gtest.h" #include "llvm/DebugInfo/PDB/PDBTypes.h" using namespace llvm; using namespace llvm::pdb; namespace { template class PDBVariantIntegerTest : public testing::Test { public: std::vector getTestIntegers() { if constexpr (std::is_same_v) { return {true, false}; } else { std::vector Integers{0, 1, 32, std::numeric_limits::min(), std::numeric_limits::max()}; if constexpr (std::is_signed_v) { Integers.emplace_back(-1); Integers.emplace_back(-65); } return Integers; } } }; using TestTypes = testing::Types; } // namespace TYPED_TEST_SUITE(PDBVariantIntegerTest, TestTypes, ); TYPED_TEST(PDBVariantIntegerTest, ToAPSInt) { for (TypeParam IntegerValue : this->getTestIntegers()) { const Variant VariantValue(IntegerValue); const APSInt APSIntValue = VariantValue.toAPSInt(); EXPECT_EQ(APSIntValue.isSigned(), std::is_signed_v) << "Unexpected 'isSigned()' result for '" << IntegerValue << "'"; bool IsNegative = false; if constexpr (!std::is_same_v) { IsNegative = IntegerValue < 0; } EXPECT_EQ(APSIntValue.isNegative(), IsNegative) << "Unexpected 'isNegative()' result for '" << IntegerValue << "'"; SmallString<20> String; APSIntValue.toString(String); EXPECT_EQ(String.str().str(), std::to_string(IntegerValue)); } }