llvm-6502/utils/unittest/googletest
2010-06-03 17:11:49 +00:00
..
include/gtest Merge gtest-1.5.0. 2010-06-02 22:02:30 +00:00
gtest-death-test.cc Merge gtest-1.5.0. 2010-06-02 22:02:30 +00:00
gtest-filepath.cc Merge gtest-1.5.0. 2010-06-02 22:02:30 +00:00
gtest-port.cc Merge gtest-1.5.0. 2010-06-02 22:02:30 +00:00
gtest-test-part.cc Merge gtest-1.5.0. 2010-06-02 22:02:30 +00:00
gtest-typed-test.cc Merge gtest-1.5.0. 2010-06-02 22:02:30 +00:00
gtest.cc Merge gtest-1.5.0. 2010-06-02 22:02:30 +00:00
LICENSE.TXT Renamed Google Test license file from COPYING to LICENSE.TXT to match LLVM 2009-01-05 17:42:15 +00:00
Makefile Disable pthread support in googletest if llvm was configured without threads. 2010-06-03 15:17:04 +00:00
README.LLVM Forgot to update the most important part of the gtest modifications readme. 2010-06-03 17:11:49 +00:00

LLVM notes
----------

This directory contains Google Test 1.5.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 codegear fused-src m4 make msvc samples scripts test xcode
$ rm -f `find . -name \*\.pump`

# Move all the source files to the current directory
$ mv src/* .
$ rmdir src

# Move extra headers into the already-existing internal headers dir
$ mv *.h include/gtest/internal/

# Update paths to the included files
$ perl -pi -e 's|^#include "src/|#include "gtest/internal/|' *.cc

$ mv COPYING LICENSE.TXT


Modified as follows:
* To GTestStreamToHelper in include/gtest/internal/gtest-internal.h,
  added the ability to stream with raw_os_ostream.