[cfe-commits] r160772 - in /cfe/trunk: test/CMakeLists.txt test/Tooling/clang-ast-dump.cpp tools/CMakeLists.txt tools/Makefile tools/clang-ast-dump/

Alexander Kornienko alexfh at google.com
Wed Jul 25 18:44:19 PDT 2012


Author: alexfh
Date: Wed Jul 25 20:44:18 2012
New Revision: 160772

URL: http://llvm.org/viewvc/llvm-project?rev=160772&view=rev
Log:
Removed standalone clang-ast-dump  tool.

Removed:
    cfe/trunk/test/Tooling/clang-ast-dump.cpp
    cfe/trunk/tools/clang-ast-dump/
Modified:
    cfe/trunk/test/CMakeLists.txt
    cfe/trunk/tools/CMakeLists.txt
    cfe/trunk/tools/Makefile

Modified: cfe/trunk/test/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CMakeLists.txt?rev=160772&r1=160771&r2=160772&view=diff
==============================================================================
--- cfe/trunk/test/CMakeLists.txt (original)
+++ cfe/trunk/test/CMakeLists.txt Wed Jul 25 20:44:18 2012
@@ -31,7 +31,7 @@
   set(CLANG_TEST_DEPS
     clang clang-headers
     c-index-test diagtool arcmt-test c-arcmt-test
-    clang-check clang-ast-dump
+    clang-check
     llvm-dis llc opt FileCheck count not
     )
   set(CLANG_TEST_PARAMS
@@ -80,7 +80,7 @@
       COMMENT "Running Clang regression tests"
       DEPENDS clang clang-headers
               c-index-test diagtool arcmt-test c-arcmt-test
-              clang-check clang-ast-dump
+              clang-check
       )
     set_target_properties(check-clang PROPERTIES FOLDER "Clang tests")
   endif()

Removed: cfe/trunk/test/Tooling/clang-ast-dump.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Tooling/clang-ast-dump.cpp?rev=160771&view=auto
==============================================================================
--- cfe/trunk/test/Tooling/clang-ast-dump.cpp (original)
+++ cfe/trunk/test/Tooling/clang-ast-dump.cpp (removed)
@@ -1,21 +0,0 @@
-// RUN: clang-ast-dump "%s" -f test_namespace::TheClass::theMethod -- -c 2>&1 | FileCheck %s
-
-// FIXME: Does this run regardless of +Asserts?
-// REQUIRES: asserts
-
-// CHECK: <CXXMethod ptr="0x{{[0-9a-f]+}}" name="theMethod" prototype="true">
-// CHECK:  <ParmVar ptr="0x{{[0-9a-f]+}}" name="x" initstyle="c">
-// CHECK: (CompoundStmt
-// CHECK-NEXT:   (ReturnStmt
-// CHECK-NEXT:     (BinaryOperator
-
-namespace test_namespace {
-
-class TheClass {
-public:
-  int theMethod(int x) {
-    return x + x;
-  }
-};
-
-}

Modified: cfe/trunk/tools/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/CMakeLists.txt?rev=160772&r1=160771&r2=160772&view=diff
==============================================================================
--- cfe/trunk/tools/CMakeLists.txt (original)
+++ cfe/trunk/tools/CMakeLists.txt Wed Jul 25 20:44:18 2012
@@ -5,4 +5,3 @@
 add_subdirectory(diagtool)
 add_subdirectory(driver)
 add_subdirectory(clang-check)
-add_subdirectory(clang-ast-dump)

Modified: cfe/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/Makefile?rev=160772&r1=160771&r2=160772&view=diff
==============================================================================
--- cfe/trunk/tools/Makefile (original)
+++ cfe/trunk/tools/Makefile Wed Jul 25 20:44:18 2012
@@ -9,7 +9,7 @@
 
 CLANG_LEVEL := ..
 DIRS := driver libclang c-index-test arcmt-test c-arcmt-test diagtool \
-        clang-check clang-ast-dump
+        clang-check
 
 include $(CLANG_LEVEL)/../../Makefile.config
 





More information about the cfe-commits mailing list