Use color for -ast-dump-filter only when it is supported
authorDmitri Gribenko <gribozavr@gmail.com>
Wed, 21 Nov 2012 10:54:55 +0000 (10:54 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Wed, 21 Nov 2012 10:54:55 +0000 (10:54 +0000)
Patch by Philip Craig.

llvm-svn: 168420

clang/lib/Frontend/ASTConsumers.cpp
clang/test/Tooling/clang-check-ast-dump.cpp

index 882d400..c99dbf0 100644 (file)
@@ -59,9 +59,12 @@ namespace {
 
     bool TraverseDecl(Decl *D) {
       if (D != NULL && filterMatches(D)) {
-        Out.changeColor(llvm::raw_ostream::BLUE) <<
-            (Dump ? "Dumping " : "Printing ") << getName(D) << ":\n";
-        Out.resetColor();
+        bool ShowColors = Out.has_colors();
+        if (ShowColors)
+          Out.changeColor(llvm::raw_ostream::BLUE);
+        Out << (Dump ? "Dumping " : "Printing ") << getName(D) << ":\n";
+        if (ShowColors)
+          Out.resetColor();
         if (Dump)
           D->dump(Out);
         else
index 43686bd..6e03f82 100644 (file)
@@ -8,7 +8,8 @@
 // RUN: clang-check -ast-dump -ast-dump-filter test_namespace::TheClass::theMethod "%s" -- 2>&1 | FileCheck -check-prefix CHECK-FILTER %s
 // CHECK-FILTER-NOT: namespace test_namespace
 // CHECK-FILTER-NOT: class TheClass
-// CHECK-FILTER: int theMethod(int x) (CompoundStmt
+// CHECK-FILTER: {{^}}Dumping test_namespace::TheClass::theMethod
+// CHECK-FILTER-NEXT: {{^}}int theMethod(int x) (CompoundStmt
 // CHECK-FILTER-NEXT:   (ReturnStmt
 // CHECK-FILTER-NEXT:     (BinaryOperator
 //