[cfe-commits] r173658 - Fix a typo in the name of a tooling unit test

Hal Finkel hfinkel at anl.gov
Sun Jan 27 20:37:38 PST 2013


Author: hfinkel
Date: Sun Jan 27 22:37:38 2013
New Revision: 173658

URL: http://llvm.org/viewvc/llvm-project?rev=173658&view=rev
Log:
Fix a typo in the name of a tooling unit test

Modified:
    cfe/trunk/unittests/Tooling/ToolingTest.cpp

Modified: cfe/trunk/unittests/Tooling/ToolingTest.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/unittests/Tooling/ToolingTest.cpp?rev=173658&r1=173657&r2=173658&view=diff
==============================================================================
--- cfe/trunk/unittests/Tooling/ToolingTest.cpp (original)
+++ cfe/trunk/unittests/Tooling/ToolingTest.cpp Sun Jan 27 22:37:38 2013
@@ -179,7 +179,7 @@ struct SkipBodyAction : public clang::AS
   }
 };
 
-TEST(runToolOnCode, TestSkipFunctionBoddy) {
+TEST(runToolOnCode, TestSkipFunctionBody) {
   EXPECT_TRUE(runToolOnCode(new SkipBodyAction,
                             "int skipMe() { an_error_here }"));
   EXPECT_FALSE(runToolOnCode(new SkipBodyAction,





More information about the cfe-commits mailing list