summaryrefslogtreecommitdiff
path: root/utils/unittest/googletest/README.LLVM
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2009-09-05 18:16:17 +0000
committerJeffrey Yasskin <jyasskin@google.com>2009-09-05 18:16:17 +0000
commit9c0c3bf1ec2feb861f19867d4091350010b23de6 (patch)
tree3ef93342ed0b85c78f6229093f2902d2cb03de3e /utils/unittest/googletest/README.LLVM
parent5db3084b6932903e61dac317260fe7b1d7987f2e (diff)
downloadllvm-9c0c3bf1ec2feb861f19867d4091350010b23de6.tar.gz
llvm-9c0c3bf1ec2feb861f19867d4091350010b23de6.tar.bz2
llvm-9c0c3bf1ec2feb861f19867d4091350010b23de6.tar.xz
Teach googletest to use raw_ostream instead of just std::ostream.
This can break when there are implicit conversions from types raw_ostream understands but std::ostream doesn't, but it increases the number of cases that Just Work. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81093 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/unittest/googletest/README.LLVM')
-rw-r--r--utils/unittest/googletest/README.LLVM5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/unittest/googletest/README.LLVM b/utils/unittest/googletest/README.LLVM
index 2c673cc6ab..e907a5e6ea 100644
--- a/utils/unittest/googletest/README.LLVM
+++ b/utils/unittest/googletest/README.LLVM
@@ -24,3 +24,8 @@ $ perl -pi -e 's|^#include "src/|#include "gtest/internal/|' *.cc
$ rm -f gtest-all.cc gtest_main.cc
$ mv COPYING LICENSE.TXT
+
+
+Modified as follows:
+* To GTestStreamToHelper in include/gtest/internal/gtest-internal.h,
+ added the ability to stream with raw_os_ostream.