OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gtest
(Results
26 - 50
of
323
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium/testing/gtest/
CMakeLists.txt
19
option(gtest_build_tests "Build all of
gtest
's own tests." OFF)
21
option(gtest_build_samples "Build
gtest
's sample programs." OFF)
23
option(gtest_disable_pthreads "Disable uses of pthreads in
gtest
." OFF)
42
project(
gtest
CXX C)
64
# Defines the
gtest
& gtest_main libraries. User tests should link
68
# are used for other targets, to ensure that
gtest
can be compiled by a user
70
cxx_library(
gtest
"${cxx_strict}" src/
gtest
-all.cc)
72
target_link_libraries(gtest_main
gtest
)
76
# Samples on how to link user tests with
gtest
or gtest_main
[
all
...]
/external/llvm/utils/unittest/
CMakeLists.txt
14
# Where
gtest
's .h files can be found.
30
add_llvm_library(
gtest
31
googletest/
gtest
.cc
32
googletest/
gtest
-death-test.cc
33
googletest/
gtest
-filepath.cc
34
googletest/
gtest
-port.cc
35
googletest/
gtest
-test-part.cc
36
googletest/
gtest
-typed-test.cc
/external/chromium/testing/
platform_test.h
8
#include <
gtest
/
gtest
.h>
/external/gtest/samples/
sample4_unittest.cc
32
#include <
gtest
/
gtest
.h>
/external/protobuf/gtest/samples/
sample4_unittest.cc
32
#include <
gtest
/
gtest
.h>
/external/gtest/test/
gtest-param-test2_test.cc
35
#include <
gtest
/
gtest
.h>
37
#include "test/
gtest
-param-test_test.h"
46
// in
gtest
-param-test_test.cc.
50
// and instantiated in another. The test is defined in
gtest
-param-test_test.cc
52
//
gtest
-param-test_test.h.
59
// in
gtest
-param-test_test.cc and InstantiationInMultipleTranslaionUnitsTest
60
// fixture is defined in
gtest
-param-test_test.h
gtest-typed-test_test.h
35
#include <
gtest
/
gtest
.h>
43
// ContainerTest will be instantiated in both
gtest
-typed-test_test.cc
44
// and
gtest
-typed-test2_test.cc.
gtest_break_on_failure_unittest_.cc
42
#include <
gtest
/
gtest
.h>
gtest_color_test_.cc
38
#include <
gtest
/
gtest
.h>
gtest_sole_header_test.cc
33
// the
gtest
.h header file alone.
35
#include <
gtest
/
gtest
.h>
/external/protobuf/gtest/test/
gtest-param-test2_test.cc
35
#include <
gtest
/
gtest
.h>
37
#include "test/
gtest
-param-test_test.h"
46
// in
gtest
-param-test_test.cc.
50
// and instantiated in another. The test is defined in
gtest
-param-test_test.cc
52
//
gtest
-param-test_test.h.
59
// in
gtest
-param-test_test.cc and InstantiationInMultipleTranslaionUnitsTest
60
// fixture is defined in
gtest
-param-test_test.h
gtest-typed-test_test.h
35
#include <
gtest
/
gtest
.h>
43
// ContainerTest will be instantiated in both
gtest
-typed-test_test.cc
44
// and
gtest
-typed-test2_test.cc.
gtest_break_on_failure_unittest_.cc
42
#include <
gtest
/
gtest
.h>
gtest_color_test_.cc
38
#include <
gtest
/
gtest
.h>
gtest_prod_test.cc
32
// Unit test for include/
gtest
/gtest_prod.h.
34
#include <
gtest
/
gtest
.h>
gtest_sole_header_test.cc
33
// the
gtest
.h header file alone.
35
#include <
gtest
/
gtest
.h>
/build/core/
host_native_test.mk
8
external/
gtest
/include
/external/chromium/testing/gtest/scripts/test/
Makefile
13
# Paths to the fused
gtest
files.
14
FUSED_GTEST_H = $(FUSED_GTEST_DIR)/
gtest
/
gtest
.h
15
FUSED_GTEST_ALL_CC = $(FUSED_GTEST_DIR)/
gtest
/
gtest
-all.cc
45
gtest
-all.o : $(FUSED_GTEST_H) $(FUSED_GTEST_ALL_CC)
46
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(FUSED_GTEST_DIR)/
gtest
/
gtest
-all.cc
58
sample1_unittest : sample1.o sample1_unittest.o
gtest
-all.o gtest_main.o
/external/gtest/scripts/test/
Makefile
13
# Paths to the fused
gtest
files.
14
FUSED_GTEST_H = $(FUSED_GTEST_DIR)/
gtest
/
gtest
.h
15
FUSED_GTEST_ALL_CC = $(FUSED_GTEST_DIR)/
gtest
/
gtest
-all.cc
43
gtest
-all.o : $(FUSED_GTEST_H) $(FUSED_GTEST_ALL_CC)
44
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(FUSED_GTEST_DIR)/
gtest
/
gtest
-all.cc
56
sample1_unittest : sample1.o sample1_unittest.o
gtest
-all.o gtest_main.o
/external/protobuf/gtest/make/
Makefile
34
GTEST_HEADERS = $(GTEST_DIR)/include/
gtest
/*.h \
35
$(GTEST_DIR)/include/
gtest
/internal/*.h
42
rm -f $(TESTS)
gtest
.a gtest_main.a *.o
44
# Builds
gtest
.a and gtest_main.a.
54
gtest
-all.o : $(GTEST_SRCS_)
55
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(GTEST_DIR)/src/
gtest
-all.cc
60
gtest
.a :
gtest
-all.o
63
gtest_main.a :
gtest
-all.o gtest_main.o
66
# Builds a sample test. A test should link with either
gtest
.a o
[
all
...]
/external/protobuf/gtest/scripts/test/
Makefile
13
# Paths to the fused
gtest
files.
14
FUSED_GTEST_H = $(FUSED_GTEST_DIR)/
gtest
/
gtest
.h
15
FUSED_GTEST_ALL_CC = $(FUSED_GTEST_DIR)/
gtest
/
gtest
-all.cc
43
gtest
-all.o : $(FUSED_GTEST_H) $(FUSED_GTEST_ALL_CC)
44
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(FUSED_GTEST_DIR)/
gtest
/
gtest
-all.cc
56
sample1_unittest : sample1.o sample1_unittest.o
gtest
-all.o gtest_main.o
/external/valgrind/unittest/
gtest_fixture_injection.h
41
#error Please include gtest_fixture_injection.h after <
gtest
/
gtest
.h>
opt_tests.cc
35
#include <
gtest
/
gtest
.h>
/external/protobuf/
autogen.sh
18
# Check that
gtest
is present. Usually it is already there since the
20
if test ! -e
gtest
; then
21
echo "Google Test not present. Fetching
gtest
-1.3.0 from the web..."
22
curl http://googletest.googlecode.com/files/
gtest
-1.3.0.tar.bz2 | tar jx
23
mv
gtest
-1.3.0
gtest
30
# the project file to MSVC 2005/2008. vladl of Google Test says
gtest
will
35
s/RuntimeLibrary="4"/RuntimeLibrary="2"/g;'
gtest
/msvc/*.vcproj
/external/chromium/testing/gmock/scripts/
fuse_gmock_files.py
39
code, assuming Google Test is in the GMOCK_ROOT_DIR/
gtest
41
OUTPUT_DIR/
gtest
/
gtest
.h, OUTPUT_DIR/gmock/gmock.h, and
42
OUTPUT_DIR/gmock-
gtest
-all.cc. Then you can build your tests
44
with OUTPUT_DIR/gmock-
gtest
-all.cc. These three files contain
73
# We need to call into
gtest
/scripts/fuse_gtest_files.py.
74
sys.path.append(os.path.join(DEFAULT_GMOCK_ROOT_DIR, '
gtest
/scripts'))
76
gtest
= fuse_gtest_files
variable
86
GTEST_H_OUTPUT = '
gtest
/
gtest
.h
[
all
...]
Completed in 4185 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>