2008-12-31 17:34:06 +00:00
|
|
|
LLVM notes
|
|
|
|
----------
|
|
|
|
|
2011-07-27 09:25:14 +00:00
|
|
|
This directory contains Google Test 1.6.0, with all elements removed except for
|
2008-12-31 17:34:06 +00:00
|
|
|
the actual source code, to minimize the addition to the LLVM distribution.
|
|
|
|
|
|
|
|
Cleaned up as follows:
|
2009-01-01 02:05:43 +00:00
|
|
|
|
|
|
|
# Remove all the unnecessary files and directories
|
2010-06-02 22:02:57 +00:00
|
|
|
$ rm -f aclocal* CMakeLists.txt configure* Makefile* CHANGES CONTRIBUTORS README
|
2011-07-27 09:25:14 +00:00
|
|
|
$ rm -rf build-aux cmake codegear fused-src m4 make msvc samples scripts test xcode
|
2008-12-31 17:34:06 +00:00
|
|
|
$ rm -f `find . -name \*\.pump`
|
2009-01-01 02:05:43 +00:00
|
|
|
|
|
|
|
# Move all the source files to the current directory
|
2009-01-01 01:29:44 +00:00
|
|
|
$ mv src/* .
|
|
|
|
$ rmdir src
|
2008-12-31 17:34:06 +00:00
|
|
|
|
2009-01-02 15:28:00 +00:00
|
|
|
# Move extra headers into the already-existing internal headers dir
|
2009-01-01 02:05:43 +00:00
|
|
|
$ mv *.h include/gtest/internal/
|
|
|
|
|
|
|
|
# Update paths to the included files
|
|
|
|
$ perl -pi -e 's|^#include "src/|#include "gtest/internal/|' *.cc
|
|
|
|
|
2011-07-27 09:25:14 +00:00
|
|
|
$ rm -f gtest-all.cc gtest_main.cc
|
|
|
|
|
2009-01-05 17:42:15 +00:00
|
|
|
$ mv COPYING LICENSE.TXT
|
2009-09-05 18:16:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
Modified as follows:
|
|
|
|
* To GTestStreamToHelper in include/gtest/internal/gtest-internal.h,
|
|
|
|
added the ability to stream with raw_os_ostream.
|
2010-06-23 06:48:34 +00:00
|
|
|
* To refresh Haiku support in include/gtest/internal/gtest-port.h,
|
|
|
|
see http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100621/102898.html
|