diff options
Diffstat (limited to 'llvm/utils/unittest/googletest/README.LLVM')
-rw-r--r-- | llvm/utils/unittest/googletest/README.LLVM | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/llvm/utils/unittest/googletest/README.LLVM b/llvm/utils/unittest/googletest/README.LLVM index afaae9963f3..06c80fea067 100644 --- a/llvm/utils/unittest/googletest/README.LLVM +++ b/llvm/utils/unittest/googletest/README.LLVM @@ -1,24 +1,20 @@ LLVM notes ---------- -This directory contains Google Test 1.6.0, with all elements removed except for +This directory contains Google Test 1.8.0, with all elements removed except for the actual source code, to minimize the addition to the LLVM distribution. Cleaned up as follows: # Remove all the unnecessary files and directories -$ rm -f aclocal* CMakeLists.txt configure* Makefile* CHANGES CONTRIBUTORS README -$ rm -rf build-aux cmake codegear fused-src m4 make msvc samples scripts test xcode +$ rm -f CMakeLists.txt configure* Makefile* CHANGES CONTRIBUTORS README README.md .gitignore +$ rm -rf build-aux cmake codegear m4 make msvc samples scripts test xcode docs $ rm -f `find . -name \*\.pump` $ rm -f src/gtest_main.cc # Put the license in the consistent place for LLVM. -$ mv COPYING LICENSE.TXT +$ mv LICENSE LICENSE.TXT Modified as follows: -* Added support for FreeBSD. -* Added support for Minix (PR6797). -* To GTestStreamToHelper in include/gtest/internal/gtest-internal.h, - added the ability to stream with raw_os_ostream. -* To refresh Haiku support in include/gtest/internal/gtest-port.h, - see http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20100621/102898.html +* Added support for Minix and Haiku. +* Added raw_os_ostream support to include/gtest/internal/custom/gtest-printers.h. |