forked from OSchip/llvm-project
* Removed gtest-all.cc; .cc files including other .cc files is weird
* Removed gtest_main.cc: we have our own main() elsewhere * Simplified the Makefile as we don't need SOURCES * Moved the internal header to gtest/internal/ * Simplified the Makefile to remove -I param to CPP.Flags * Updated README.LLVM with all the steps I took to massage GTest to work in LLVM so far llvm-svn: 61540
This commit is contained in:
parent
922e34993a
commit
22df200727
|
@ -12,8 +12,6 @@ include $(LEVEL)/Makefile.config
|
||||||
|
|
||||||
LIBRARYNAME = GoogleTest
|
LIBRARYNAME = GoogleTest
|
||||||
BUILD_ARCHIVE = 1
|
BUILD_ARCHIVE = 1
|
||||||
SOURCES = gtest-all.cc
|
|
||||||
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/
|
|
||||||
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
|
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
|
||||||
CPP.Flags += -Wno-missing-field-initializers -Wno-variadic-macros
|
CPP.Flags += -Wno-missing-field-initializers -Wno-variadic-macros
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,23 @@ This directory contains Google Test 1.2.1, with all elements removed except for
|
||||||
the actual source code, to minimize the addition to the LLVM distribution.
|
the actual source code, to minimize the addition to the LLVM distribution.
|
||||||
|
|
||||||
Cleaned up as follows:
|
Cleaned up as follows:
|
||||||
|
|
||||||
|
# Remove all the unnecessary files and directories
|
||||||
$ rm -f aclocal* configure* Makefile* CHANGES CONTRIBUTORS README
|
$ rm -f aclocal* configure* Makefile* CHANGES CONTRIBUTORS README
|
||||||
$ rm -rf build-aux m4 make msvc samples scons scripts test xcode
|
$ rm -rf build-aux m4 make msvc samples scons scripts test xcode
|
||||||
$ rm -f `find . -name \*\.pump`
|
$ rm -f `find . -name \*\.pump`
|
||||||
|
|
||||||
|
# Move all the source files to the current directory
|
||||||
$ mv src/* .
|
$ mv src/* .
|
||||||
$ rmdir src
|
$ rmdir src
|
||||||
|
|
||||||
|
# Move the extra header 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
|
||||||
|
|
||||||
|
# We have our own main() .
|
||||||
|
$ rm -f gtest_main.cc
|
||||||
|
|
||||||
For the license, see the file COPYING in this directory.
|
For the license, see the file COPYING in this directory.
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
// Copyright 2008, Google Inc.
|
|
||||||
// All rights reserved.
|
|
||||||
//
|
|
||||||
// Redistribution and use in source and binary forms, with or without
|
|
||||||
// modification, are permitted provided that the following conditions are
|
|
||||||
// met:
|
|
||||||
//
|
|
||||||
// * Redistributions of source code must retain the above copyright
|
|
||||||
// notice, this list of conditions and the following disclaimer.
|
|
||||||
// * Redistributions in binary form must reproduce the above
|
|
||||||
// copyright notice, this list of conditions and the following disclaimer
|
|
||||||
// in the documentation and/or other materials provided with the
|
|
||||||
// distribution.
|
|
||||||
// * Neither the name of Google Inc. nor the names of its
|
|
||||||
// contributors may be used to endorse or promote products derived from
|
|
||||||
// this software without specific prior written permission.
|
|
||||||
//
|
|
||||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
//
|
|
||||||
// Author: mheule@google.com (Markus Heule)
|
|
||||||
//
|
|
||||||
// Google C++ Testing Framework (Google Test)
|
|
||||||
//
|
|
||||||
// Sometimes it's desirable to build Google Test by compiling a single file.
|
|
||||||
// This file serves this purpose.
|
|
||||||
#include "src/gtest.cc"
|
|
||||||
#include "src/gtest-death-test.cc"
|
|
||||||
#include "src/gtest-filepath.cc"
|
|
||||||
#include "src/gtest-port.cc"
|
|
||||||
#include "src/gtest-test-part.cc"
|
|
||||||
#include "src/gtest-typed-test.cc"
|
|
|
@ -49,7 +49,7 @@
|
||||||
// prevent a user from accidentally including gtest-internal-inl.h in
|
// prevent a user from accidentally including gtest-internal-inl.h in
|
||||||
// his code.
|
// his code.
|
||||||
#define GTEST_IMPLEMENTATION
|
#define GTEST_IMPLEMENTATION
|
||||||
#include "src/gtest-internal-inl.h"
|
#include "gtest/internal/gtest-internal-inl.h"
|
||||||
#undef GTEST_IMPLEMENTATION
|
#undef GTEST_IMPLEMENTATION
|
||||||
|
|
||||||
namespace testing {
|
namespace testing {
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
// prevent a user from accidentally including gtest-internal-inl.h in
|
// prevent a user from accidentally including gtest-internal-inl.h in
|
||||||
// his code.
|
// his code.
|
||||||
#define GTEST_IMPLEMENTATION
|
#define GTEST_IMPLEMENTATION
|
||||||
#include "src/gtest-internal-inl.h"
|
#include "gtest/internal/gtest-internal-inl.h"
|
||||||
#undef GTEST_IMPLEMENTATION
|
#undef GTEST_IMPLEMENTATION
|
||||||
|
|
||||||
namespace testing {
|
namespace testing {
|
||||||
|
|
|
@ -117,7 +117,7 @@
|
||||||
// prevent a user from accidentally including gtest-internal-inl.h in
|
// prevent a user from accidentally including gtest-internal-inl.h in
|
||||||
// his code.
|
// his code.
|
||||||
#define GTEST_IMPLEMENTATION
|
#define GTEST_IMPLEMENTATION
|
||||||
#include "src/gtest-internal-inl.h"
|
#include "gtest/internal/gtest-internal-inl.h"
|
||||||
#undef GTEST_IMPLEMENTATION
|
#undef GTEST_IMPLEMENTATION
|
||||||
|
|
||||||
#ifdef GTEST_OS_WINDOWS
|
#ifdef GTEST_OS_WINDOWS
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
// Copyright 2006, Google Inc.
|
|
||||||
// All rights reserved.
|
|
||||||
//
|
|
||||||
// Redistribution and use in source and binary forms, with or without
|
|
||||||
// modification, are permitted provided that the following conditions are
|
|
||||||
// met:
|
|
||||||
//
|
|
||||||
// * Redistributions of source code must retain the above copyright
|
|
||||||
// notice, this list of conditions and the following disclaimer.
|
|
||||||
// * Redistributions in binary form must reproduce the above
|
|
||||||
// copyright notice, this list of conditions and the following disclaimer
|
|
||||||
// in the documentation and/or other materials provided with the
|
|
||||||
// distribution.
|
|
||||||
// * Neither the name of Google Inc. nor the names of its
|
|
||||||
// contributors may be used to endorse or promote products derived from
|
|
||||||
// this software without specific prior written permission.
|
|
||||||
//
|
|
||||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
#include <gtest/gtest.h>
|
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
|
||||||
std::cout << "Running main() from gtest_main.cc\n";
|
|
||||||
|
|
||||||
testing::InitGoogleTest(&argc, argv);
|
|
||||||
return RUN_ALL_TESTS();
|
|
||||||
}
|
|
Loading…
Reference in New Issue