diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2017-01-04 23:06:03 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2017-01-04 23:06:03 +0000 |
commit | a977582dead2c6696ff5e273efe84a3878bb6e61 (patch) | |
tree | 819e3b0d9df8ea8814310febaa6188bc3ba23477 /llvm/utils/unittest/googletest/README.LLVM | |
parent | dbf7ca9ce61faee8b21b53d0d414bf1e939bb881 (diff) | |
download | bcm5719-llvm-a977582dead2c6696ff5e273efe84a3878bb6e61.tar.gz bcm5719-llvm-a977582dead2c6696ff5e273efe84a3878bb6e61.zip |
[gtest] Upgrade googletest to version 1.8.0, minimizing local changes.
This required re-working the streaming support and lit's support for
'--gtest_list_tests' but otherwise seems to be a clean upgrade.
Differential Revision: https://reviews.llvm.org/D28154
llvm-svn: 291029
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. |