diff options
author | Manuel Klimek <klimek@google.com> | 2013-02-11 12:37:30 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2013-02-11 12:37:30 +0000 |
commit | 2549956ee350c0678da3ef9c667f4cefa78167d9 (patch) | |
tree | 055c982f31680ad36b8bbe3c3393f5637d6fe10b | |
parent | eef30490fd13fe4f460df5a18695215ddef2ace1 (diff) | |
download | bcm5719-llvm-2549956ee350c0678da3ef9c667f4cefa78167d9.tar.gz bcm5719-llvm-2549956ee350c0678da3ef9c667f4cefa78167d9.zip |
Get rid of manual debug output, now that the test runner supports it.
You can run tests with -debug instead now.
llvm-svn: 174880
-rw-r--r-- | clang/lib/Format/Format.cpp | 3 | ||||
-rw-r--r-- | clang/lib/Format/UnwrappedLineParser.cpp | 3 | ||||
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index ab71d593599..6dc84a10c64 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -26,9 +26,6 @@ #include "llvm/Support/Debug.h" #include <string> -// Uncomment to get debug output from tests: -// #define DEBUG_WITH_TYPE(T, X) do { X; } while(0) - namespace clang { namespace format { diff --git a/clang/lib/Format/UnwrappedLineParser.cpp b/clang/lib/Format/UnwrappedLineParser.cpp index 3030789ad07..922671600d2 100644 --- a/clang/lib/Format/UnwrappedLineParser.cpp +++ b/clang/lib/Format/UnwrappedLineParser.cpp @@ -19,9 +19,6 @@ #include "clang/Basic/Diagnostic.h" #include "llvm/Support/Debug.h" -// Uncomment to get debug output from tests: -// #define DEBUG_WITH_TYPE(T, X) do { X; } while(0) - namespace clang { namespace format { diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 97445c56b10..f9e73bb1027 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -15,9 +15,6 @@ #include "llvm/Support/Debug.h" #include "gtest/gtest.h" -// Uncomment to get debug output from tests: -// #define DEBUG_WITH_TYPE(T, X) do { X; } while(0) - namespace clang { namespace format { |