diff options
author | John McCall <rjmccall@apple.com> | 2011-08-27 19:23:22 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-08-27 19:23:22 +0000 |
commit | f5ec9b55e871d326b8917f203711529273e7fa54 (patch) | |
tree | 00e6ae26998d2c8af7e5239d9ddecc7f07b01a3d /unittests | |
parent | 2753ae314f656eab6d42c918469ce4ebf422cee5 (diff) | |
download | external_llvm-f5ec9b55e871d326b8917f203711529273e7fa54.zip external_llvm-f5ec9b55e871d326b8917f203711529273e7fa54.tar.gz external_llvm-f5ec9b55e871d326b8917f203711529273e7fa54.tar.bz2 |
The 'expected' argument to EXPECT_EQ is actually the first one;
flip these tests around.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138708 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/VMCore/InstructionsTest.cpp | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/unittests/VMCore/InstructionsTest.cpp b/unittests/VMCore/InstructionsTest.cpp index 0a01538..f0197bb 100644 --- a/unittests/VMCore/InstructionsTest.cpp +++ b/unittests/VMCore/InstructionsTest.cpp @@ -29,13 +29,13 @@ TEST(InstructionsTest, ReturnInst) { IntegerType* Int1 = IntegerType::get(C, 1); Constant* One = ConstantInt::get(Int1, 1, true); const ReturnInst* r1 = ReturnInst::Create(C, One); - EXPECT_EQ(r1->getNumOperands(), 1U); + EXPECT_EQ(1U, r1->getNumOperands()); User::const_op_iterator b(r1->op_begin()); - EXPECT_NE(b, r1->op_end()); - EXPECT_EQ(*b, One); - EXPECT_EQ(r1->getOperand(0), One); + EXPECT_NE(r1->op_end(), b); + EXPECT_EQ(One, *b); + EXPECT_EQ(One, r1->getOperand(0)); ++b; - EXPECT_EQ(b, r1->op_end()); + EXPECT_EQ(r1->op_end(), b); // clean up delete r0; @@ -54,15 +54,15 @@ TEST(InstructionsTest, BranchInst) { EXPECT_TRUE(b0->isUnconditional()); EXPECT_FALSE(b0->isConditional()); - EXPECT_EQ(b0->getNumSuccessors(), 1U); + EXPECT_EQ(1U, b0->getNumSuccessors()); // check num operands - EXPECT_EQ(b0->getNumOperands(), 1U); + EXPECT_EQ(1U, b0->getNumOperands()); EXPECT_NE(b0->op_begin(), b0->op_end()); - EXPECT_EQ(llvm::next(b0->op_begin()), b0->op_end()); + EXPECT_EQ(b0->op_end(), llvm::next(b0->op_begin())); - EXPECT_EQ(llvm::next(b0->op_begin()), b0->op_end()); + EXPECT_EQ(b0->op_end(), llvm::next(b0->op_begin())); IntegerType* Int1 = IntegerType::get(C, 1); Constant* One = ConstantInt::get(Int1, 1, true); @@ -72,33 +72,33 @@ TEST(InstructionsTest, BranchInst) { EXPECT_FALSE(b1->isUnconditional()); EXPECT_TRUE(b1->isConditional()); - EXPECT_EQ(b1->getNumSuccessors(), 2U); + EXPECT_EQ(2U, b1->getNumSuccessors()); // check num operands - EXPECT_EQ(b1->getNumOperands(), 3U); + EXPECT_EQ(3U, b1->getNumOperands()); User::const_op_iterator b(b1->op_begin()); // check COND EXPECT_NE(b, b1->op_end()); - EXPECT_EQ(*b, One); - EXPECT_EQ(b1->getOperand(0), One); - EXPECT_EQ(b1->getCondition(), One); + EXPECT_EQ(One, *b); + EXPECT_EQ(One, b1->getOperand(0)); + EXPECT_EQ(One, b1->getCondition()); ++b; // check ELSE - EXPECT_EQ(*b, bb1); - EXPECT_EQ(b1->getOperand(1), bb1); - EXPECT_EQ(b1->getSuccessor(1), bb1); + EXPECT_EQ(bb1, *b); + EXPECT_EQ(bb1, b1->getOperand(1)); + EXPECT_EQ(bb1, b1->getSuccessor(1)); ++b; // check THEN - EXPECT_EQ(*b, bb0); - EXPECT_EQ(b1->getOperand(2), bb0); - EXPECT_EQ(b1->getSuccessor(0), bb0); + EXPECT_EQ(bb0, *b); + EXPECT_EQ(bb0, b1->getOperand(2)); + EXPECT_EQ(bb0, b1->getSuccessor(0)); ++b; - EXPECT_EQ(b, b1->op_end()); + EXPECT_EQ(b1->op_end(), b); // clean up delete b0; @@ -125,8 +125,8 @@ TEST(InstructionsTest, CastInst) { EXPECT_FALSE(CastInst::isCastable(Int64Ty, X86MMXTy)); EXPECT_TRUE(CastInst::isCastable(V8x64Ty, V8x8Ty)); EXPECT_TRUE(CastInst::isCastable(V8x8Ty, V8x64Ty)); - EXPECT_EQ(CastInst::getCastOpcode(c64, true, V8x8Ty, true), CastInst::Trunc); - EXPECT_EQ(CastInst::getCastOpcode(c8, true, V8x64Ty, true), CastInst::SExt); + EXPECT_EQ(CastInst::Trunc, CastInst::getCastOpcode(c64, true, V8x8Ty, true)); + EXPECT_EQ(CastInst::SExt, CastInst::getCastOpcode(c8, true, V8x64Ty, true)); } } // end anonymous namespace |