HomeSort by relevance Sort by last modified time
    Searched refs:TEST (Results 1 - 25 of 2007) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Driver/
response-file.c 21 #ifdef TEST
  /art/runtime/
gtest_test.cc 19 // Sanity test that gtest alone works on host and target
20 TEST(GTest, Nop) {}
  /external/gmock/test/
gmock-port_test.cc 40 // test here to make references to symbols in the gtest library and avoid
43 TEST(DummyTest, Dummy) {}
  /external/google-breakpad/src/testing/gtest/test/
gtest_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
gtest_help_test_.cc 38 // and exit with 0; otherwise the following test will be executed,
40 TEST(HelpFlagTest, ShouldNotBeRun) {
45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
gtest_uninitialized_test_.cc 34 TEST(DummyTest, Dummy) {
35 // This test doesn't verify anything. We just need it to create a
36 // realistic stage for testing the behavior of Google Test when
  /external/google-breakpad/src/testing/test/
gmock-port_test.cc 40 // test here to make references to symbols in the gtest library and avoid
43 TEST(DummyTest, Dummy) {}
  /external/gtest/test/
gtest_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
gtest_help_test_.cc 38 // and exit with 0; otherwise the following test will be executed,
40 TEST(HelpFlagTest, ShouldNotBeRun) {
45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
gtest_uninitialized_test_.cc 34 TEST(DummyTest, Dummy) {
35 // This test doesn't verify anything. We just need it to create a
36 // realistic stage for testing the behavior of Google Test when
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
gtest_help_test_.cc 38 // and exit with 0; otherwise the following test will be executed,
40 TEST(HelpFlagTest, ShouldNotBeRun) {
45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
gtest_uninitialized_test_.cc 34 TEST(DummyTest, Dummy) {
35 // This test doesn't verify anything. We just need it to create a
36 // realistic stage for testing the behavior of Google Test when
  /external/webrtc/webrtc/voice_engine/
channel_unittest.cc 14 // Empty test just to get coverage metrics.
15 TEST(ChannelTest, EmptyTestToGetCodeCoverage) {}
  /ndk/sources/third_party/googletest/googletest/test/
gtest_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
gtest_help_test_.cc 38 // and exit with 0; otherwise the following test will be executed,
40 TEST(HelpFlagTest, ShouldNotBeRun) {
45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
gtest_uninitialized_test_.cc 34 TEST(DummyTest, Dummy) {
35 // This test doesn't verify anything. We just need it to create a
36 // realistic stage for testing the behavior of Google Test when
  /external/valgrind/none/tests/mips64/
cvm_bbit.stdout.exp 0 TEST bbit0: PASS
2 TEST bbit1: PASS
3 TEST bbit032: PASS
4 TEST bbit132: PASS
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
noload-1.s 1 .section TEST,"aw",%progbits
  /external/regex-re2/re2/testing/
exhaustive_test.cc 7 #include "util/test.h"
14 // Test very simple expressions.
15 TEST(EgrepLiterals, Lowercase) {
19 // Test mixed-case expressions.
20 TEST(EgrepLiterals, MixedCase) {
24 // Test mixed-case in case-insensitive mode.
25 TEST(EgrepLiterals, FoldCase) {
32 // Test very simple expressions.
33 TEST(EgrepLiterals, UTF8) {
  /external/webrtc/webrtc/test/testsupport/
always_passing_unittest.cc 15 // A test that always passes. Useful when all tests in a executable are
17 TEST(AlwaysPassingTest, AlwaysPassingTest) {}
  /external/nanopb-c/tests/alltypes/
decode_alltypes.c 13 #define TEST(x) if (!(x)) { \
14 printf("Test " #x " failed.\n"); \
30 TEST(alltypes.req_int32 == -1001);
31 TEST(alltypes.req_int64 == -1002);
32 TEST(alltypes.req_uint32 == 1003);
33 TEST(alltypes.req_uint64 == 1004);
34 TEST(alltypes.req_sint32 == -1005);
35 TEST(alltypes.req_sint64 == -1006);
36 TEST(alltypes.req_bool == true);
38 TEST(alltypes.req_fixed32 == 1008)
    [all...]
  /external/jemalloc/test/unit/
util.c 1 #include "test/jemalloc_test.h"
136 struct test_s *test = &tests[i]; local
142 result = malloc_strtoumax(test->input, &remainder, test->base);
144 assert_d_eq(err, test->expected_errno,
146 test->expected_errno_name, test->input, test->base);
147 assert_str_eq(remainder, test->expected_remainder,
149 test->input, test->base)
    [all...]
  /external/skia/tests/
FitsInTest.cpp 10 #include "Test.h"
14 #define TEST(S, s, D, expected) REPORTER_ASSERT(reporter, (SkTFitsIn<D>((S)(s)) == (expected)))
17 TEST(int32_t, 1, int8_t, true);
18 TEST(int32_t, -1, int8_t, true);
19 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::max)(), int8_t, true);
20 TEST(int32_t, ((int32_t)(std::numeric_limits<int8_t>::max)())+1, int8_t, false);
21 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::min)(), int8_t, true);
22 TEST(int32_t, (int32_t)((std::numeric_limits<int8_t>::min)())-1, int8_t, false);
24 TEST(int32_t, 1, uint8_t, true);
25 TEST(int32_t, -1, uint8_t, false)
    [all...]
  /external/nanopb-c/tests/backwards_compatibility/
decode_legacy.c 2 * This is a backwards-compatibility test, using alltypes_legacy.h.
4 * decode_alltypes to test any new features introduced later.
16 #define TEST(x) if (!(x)) { \
17 printf("Test " #x " failed.\n"); \
33 TEST(alltypes.req_int32 == -1001);
34 TEST(alltypes.req_int64 == -1002);
35 TEST(alltypes.req_uint32 == 1003);
36 TEST(alltypes.req_uint64 == 1004);
37 TEST(alltypes.req_sint32 == -1005);
38 TEST(alltypes.req_sint64 == -1006)
    [all...]

Completed in 323 milliseconds

1 2 3 4 5 6 7 8 91011>>