25 lines · plain
1LLVM notes2----------3 4This directory contains Google Test v1.14.0, with all elements removed except5for the actual source code, to minimize the addition to the LLVM distribution.6 7Cleaned up as follows:8 9# Remove all the unnecessary files and directories10$ rm -f CMakeLists.txt configure* Makefile* CHANGES CONTRIBUTORS README README.md .gitignore11$ rm -rf build-aux cmake codegear m4 make msvc samples scripts test xcode docs12$ rm -f src/gtest_main.cc13 14# Put the license in the consistent place for LLVM.15$ mv LICENSE LICENSE.TXT16 17Modified as follows:18* Added raw_os_ostream support to include/gtest/internal/custom/gtest-printers.h.19* Added StringRef support to include/gtest/internal/custom/gtest-printers.h.20* Added LLVM printable value support to include/gtest/gtest-message.h and21 include/gtest/gtest-printers.h.22* Modified `PrintTo(char16_t c, ::std::ostream* os)` and23 `PrintTo(char16_t c, ::std::ostream* os)` in include/gtest/gtest-printers.h.24 to work around https://github.com/google/googletest/issues/476225