[llvm] r218821 - Update test name to match changes made in r218783

David Blaikie dblaikie at gmail.com
Wed Oct 1 14:19:39 PDT 2014


Author: dblaikie
Date: Wed Oct  1 16:19:39 2014
New Revision: 218821

URL: http://llvm.org/viewvc/llvm-project?rev=218821&view=rev
Log:
Update test name to match changes made in r218783

Addressing post commit review feedback from Justin Bogner.

Modified:
    llvm/trunk/unittests/ADT/OptionalTest.cpp

Modified: llvm/trunk/unittests/ADT/OptionalTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ADT/OptionalTest.cpp?rev=218821&r1=218820&r2=218821&view=diff
==============================================================================
--- llvm/trunk/unittests/ADT/OptionalTest.cpp (original)
+++ llvm/trunk/unittests/ADT/OptionalTest.cpp Wed Oct  1 16:19:39 2014
@@ -346,7 +346,7 @@ private:
 unsigned Immovable::Constructions = 0;
 unsigned Immovable::Destructions = 0;
 
-TEST_F(OptionalTest, MoveOnlyEmplace) {
+TEST_F(OptionalTest, ImmovableEmplace) {
   Optional<Immovable> A;
   Immovable::ResetCounts();
   A.emplace(4);





More information about the llvm-commits mailing list