Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
include/gtest/ | 22-Nov-2023 | - | 19,876 | 13,053 | ||
src/ | 22-Nov-2023 | - | 8,934 | 5,297 | ||
LICENSE.TXT | D | 22-Nov-2023 | 1.4 KiB | 29 | 25 | |
Makefile | D | 22-Nov-2023 | 1.3 KiB | 43 | 19 | |
README.LLVM | D | 22-Nov-2023 | 877 | 24 | 18 |
README.LLVM
1LLVM notes 2---------- 3 4This directory contains Google Test 1.6.0, with all elements removed except for 5the actual source code, to minimize the addition to the LLVM distribution. 6 7Cleaned up as follows: 8 9# Remove all the unnecessary files and directories 10$ rm -f aclocal* CMakeLists.txt configure* Makefile* CHANGES CONTRIBUTORS README 11$ rm -rf build-aux cmake codegear fused-src m4 make msvc samples scripts test xcode 12$ rm -f `find . -name \*\.pump` 13$ rm -f src/gtest_main.cc 14 15# Put the license in the consistent place for LLVM. 16$ mv COPYING LICENSE.TXT 17 18Modified as follows: 19* Added support for FreeBSD. 20* To GTestStreamToHelper in include/gtest/internal/gtest-internal.h, 21 added the ability to stream with raw_os_ostream. 22* To refresh Haiku support in include/gtest/internal/gtest-port.h, 23 see http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20100621/102898.html 24