[llvm] r233602 - Transforms: Update unit tests to use verifyModule()

Duncan P. N. Exon Smith dexonsmith at apple.com
Mon Mar 30 14:35:14 PDT 2015


Author: dexonsmith
Date: Mon Mar 30 16:35:14 2015
New Revision: 233602

URL: http://llvm.org/viewvc/llvm-project?rev=233602&view=rev
Log:
Transforms: Update unit tests to use verifyModule()

Since I'm slowly gutting `DISubprogram` and `DICompileUnit`, update the
`CloneFunc` unit tests to call `verifyModule()` (where the checks are
moving to).

Modified:
    llvm/trunk/unittests/Transforms/Utils/Cloning.cpp

Modified: llvm/trunk/unittests/Transforms/Utils/Cloning.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Transforms/Utils/Cloning.cpp?rev=233602&r1=233601&r2=233602&view=diff
==============================================================================
--- llvm/trunk/unittests/Transforms/Utils/Cloning.cpp (original)
+++ llvm/trunk/unittests/Transforms/Utils/Cloning.cpp Mon Mar 30 16:35:14 2015
@@ -22,6 +22,7 @@
 #include "llvm/IR/IntrinsicInst.h"
 #include "llvm/IR/LLVMContext.h"
 #include "llvm/IR/Module.h"
+#include "llvm/IR/Verifier.h"
 #include "gtest/gtest.h"
 
 using namespace llvm;
@@ -297,15 +298,17 @@ TEST_F(CloneFunc, NewFunctionCreated) {
 // Test that a new subprogram entry was added and is pointing to the new
 // function, while the original subprogram still points to the old one.
 TEST_F(CloneFunc, Subprogram) {
+  EXPECT_FALSE(verifyModule(*M));
+
   unsigned SubprogramCount = Finder->subprogram_count();
   EXPECT_EQ(2U, SubprogramCount);
 
   auto Iter = Finder->subprograms().begin();
   DISubprogram Sub1(*Iter);
-  EXPECT_TRUE(Sub1.Verify());
+  EXPECT_TRUE(Sub1.isSubprogram());
   Iter++;
   DISubprogram Sub2(*Iter);
-  EXPECT_TRUE(Sub2.Verify());
+  EXPECT_TRUE(Sub2.isSubprogram());
 
   EXPECT_TRUE((Sub1.getFunction() == OldFunc && Sub2.getFunction() == NewFunc)
            || (Sub1.getFunction() == NewFunc && Sub2.getFunction() == OldFunc));
@@ -314,14 +317,16 @@ TEST_F(CloneFunc, Subprogram) {
 // Test that the new subprogram entry was not added to the CU which doesn't
 // contain the old subprogram entry.
 TEST_F(CloneFunc, SubprogramInRightCU) {
+  EXPECT_FALSE(verifyModule(*M));
+
   EXPECT_EQ(2U, Finder->compile_unit_count());
 
   auto Iter = Finder->compile_units().begin();
   DICompileUnit CU1(*Iter);
-  EXPECT_TRUE(CU1.Verify());
+  EXPECT_TRUE(CU1.isCompileUnit());
   Iter++;
   DICompileUnit CU2(*Iter);
-  EXPECT_TRUE(CU2.Verify());
+  EXPECT_TRUE(CU2.isCompileUnit());
   EXPECT_TRUE(CU1.getSubprograms().getNumElements() == 0
            || CU2.getSubprograms().getNumElements() == 0);
 }
@@ -329,6 +334,8 @@ TEST_F(CloneFunc, SubprogramInRightCU) {
 // Test that instructions in the old function still belong to it in the
 // metadata, while instruction in the new function belong to the new one.
 TEST_F(CloneFunc, InstructionOwnership) {
+  EXPECT_FALSE(verifyModule(*M));
+
   inst_iterator OldIter = inst_begin(OldFunc);
   inst_iterator OldEnd = inst_end(OldFunc);
   inst_iterator NewIter = inst_begin(NewFunc);
@@ -350,8 +357,8 @@ TEST_F(CloneFunc, InstructionOwnership)
       // But that they belong to different functions
       DISubprogram OldSubprogram(OldDL.getScope());
       DISubprogram NewSubprogram(NewDL.getScope());
-      EXPECT_TRUE(OldSubprogram.Verify());
-      EXPECT_TRUE(NewSubprogram.Verify());
+      EXPECT_TRUE(OldSubprogram.isSubprogram());
+      EXPECT_TRUE(NewSubprogram.isSubprogram());
       EXPECT_EQ(OldFunc, OldSubprogram.getFunction());
       EXPECT_EQ(NewFunc, NewSubprogram.getFunction());
     }
@@ -366,6 +373,8 @@ TEST_F(CloneFunc, InstructionOwnership)
 // Test that the arguments for debug intrinsics in the new function were
 // properly cloned
 TEST_F(CloneFunc, DebugIntrinsics) {
+  EXPECT_FALSE(verifyModule(*M));
+
   inst_iterator OldIter = inst_begin(OldFunc);
   inst_iterator OldEnd = inst_end(OldFunc);
   inst_iterator NewIter = inst_begin(NewFunc);





More information about the llvm-commits mailing list