[llvm] 3adf2b0 - [LLVM][PDB][Test] Fix the build (#131984)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 05:11:19 PDT 2025


Author: Aleksandr Korepanov
Date: 2025-03-19T13:11:15+01:00
New Revision: 3adf2b00aef80fa313faf668a50eae4cf41334a5

URL: https://github.com/llvm/llvm-project/commit/3adf2b00aef80fa313faf668a50eae4cf41334a5
DIFF: https://github.com/llvm/llvm-project/commit/3adf2b00aef80fa313faf668a50eae4cf41334a5.diff

LOG: [LLVM][PDB][Test] Fix the build (#131984)

Hello! Sorry, it seems I broke the build in
https://github.com/llvm/llvm-project/pull/131598
Build:
https://lab.llvm.org/buildbot/#/builders/145/builds/5745

This is a compilation fix, please take a look.

Added: 
    

Modified: 
    llvm/unittests/DebugInfo/PDB/PDBVariantTest.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/DebugInfo/PDB/PDBVariantTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBVariantTest.cpp
index 5dff893e7f13d..3da3b86eba461 100644
--- a/llvm/unittests/DebugInfo/PDB/PDBVariantTest.cpp
+++ b/llvm/unittests/DebugInfo/PDB/PDBVariantTest.cpp
@@ -37,7 +37,7 @@ using TestTypes = testing::Types<bool, int8_t, uint8_t, int16_t, uint16_t,
 
 } // namespace
 
-TYPED_TEST_SUITE(PDBVariantIntegerTest, TestTypes);
+TYPED_TEST_SUITE(PDBVariantIntegerTest, TestTypes, );
 
 TYPED_TEST(PDBVariantIntegerTest, ToAPSInt) {
   for (TypeParam IntegerValue : this->getTestIntegers()) {


        


More information about the llvm-commits mailing list