Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
include/gtest/ | 03-May-2024 | - | 19,402 | 12,827 | ||
LICENSE.TXT | D | 03-May-2024 | 1.4 KiB | 29 | 25 | |
Makefile | D | 03-May-2024 | 1.2 KiB | 40 | 17 | |
README.LLVM | D | 03-May-2024 | 1 KiB | 32 | 22 | |
gtest-death-test.cc | D | 03-May-2024 | 43.3 KiB | 1,173 | 747 | |
gtest-filepath.cc | D | 03-May-2024 | 13.9 KiB | 381 | 240 | |
gtest-port.cc | D | 03-May-2024 | 23.5 KiB | 712 | 435 | |
gtest-test-part.cc | D | 03-May-2024 | 4.1 KiB | 111 | 51 | |
gtest-typed-test.cc | D | 03-May-2024 | 3.7 KiB | 111 | 59 | |
gtest.cc | D | 03-May-2024 | 166.1 KiB | 4,676 | 2,884 |
README.LLVM
1LLVM notes 2---------- 3 4This directory contains Google Test 1.5.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 codegear fused-src m4 make msvc samples scripts test xcode 12$ rm -f `find . -name \*\.pump` 13 14# Move all the source files to the current directory 15$ mv src/* . 16$ rmdir src 17 18# Move extra headers into the already-existing internal headers dir 19$ mv *.h include/gtest/internal/ 20 21# Update paths to the included files 22$ perl -pi -e 's|^#include "src/|#include "gtest/internal/|' *.cc 23 24$ mv COPYING LICENSE.TXT 25 26 27Modified as follows: 28* To GTestStreamToHelper in include/gtest/internal/gtest-internal.h, 29 added the ability to stream with raw_os_ostream. 30* To refresh Haiku support in include/gtest/internal/gtest-port.h, 31 see http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100621/102898.html 32