• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

include/gtest/22-Nov-2023-20,90013,510

LICENSE.TXTD22-Nov-20231.4 KiB2925

MakefileD22-Nov-20231.2 KiB4017

README.LLVMD22-Nov-20231.1 KiB3423

gtest-death-test.ccD22-Nov-202345.3 KiB1,235771

gtest-filepath.ccD22-Nov-202313.9 KiB381240

gtest-port.ccD22-Nov-202324.7 KiB747457

gtest-printers.ccD22-Nov-202311.8 KiB357211

gtest-test-part.ccD22-Nov-20234.1 KiB11151

gtest-typed-test.ccD22-Nov-20233.7 KiB11159

gtest.ccD22-Nov-2023174.6 KiB4,8663,008

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
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$ rm -f gtest-all.cc gtest_main.cc
25
26$ mv COPYING LICENSE.TXT
27
28
29Modified as follows:
30* To GTestStreamToHelper in include/gtest/internal/gtest-internal.h,
31  added the ability to stream with raw_os_ostream.
32* To refresh Haiku support in include/gtest/internal/gtest-port.h,
33  see http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100621/102898.html
34