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

  /external/llvm/unittests/ADT/
PackedVectorTest.cpp 77 #ifdef EXPECT_DEBUG_DEATH
85 EXPECT_DEBUG_DEATH(Vec[0] = 4, "value is too big");
86 EXPECT_DEBUG_DEATH(Vec[0] = -1, "value is too big");
87 EXPECT_DEBUG_DEATH(Vec[0] = 0x100, "value is too big");
92 EXPECT_DEBUG_DEATH(Vec[0] = 8, "value is too big");
101 EXPECT_DEBUG_DEATH(Vec[0] = -3, "value is too big");
102 EXPECT_DEBUG_DEATH(Vec[0] = 2, "value is too big");
107 EXPECT_DEBUG_DEATH(Vec[0] = -5, "value is too big");
108 EXPECT_DEBUG_DEATH(Vec[0] = 4, "value is too big");
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.h 142 // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
161 // EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
179 // EXPECT_DEBUG_DEATH({
187 #define EXPECT_DEBUG_DEATH(statement, regex) \
195 #define EXPECT_DEBUG_DEATH(statement, regex) \
201 #endif // NDEBUG for EXPECT_DEBUG_DEATH
  /external/chromium/testing/gtest/include/gtest/
gtest-death-test.h 202 // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
221 // EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
239 // EXPECT_DEBUG_DEATH({
247 # define EXPECT_DEBUG_DEATH(statement, regex) \
255 # define EXPECT_DEBUG_DEATH(statement, regex) \
261 # endif // NDEBUG for EXPECT_DEBUG_DEATH
  /external/gtest/include/gtest/
gtest-death-test.h 202 // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
221 // EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
239 // EXPECT_DEBUG_DEATH({
247 # define EXPECT_DEBUG_DEATH(statement, regex) \
255 # define EXPECT_DEBUG_DEATH(statement, regex) \
261 # endif // NDEBUG for EXPECT_DEBUG_DEATH
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-death-test.h 202 // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
221 // EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
239 // EXPECT_DEBUG_DEATH({
247 # define EXPECT_DEBUG_DEATH(statement, regex) \
255 # define EXPECT_DEBUG_DEATH(statement, regex) \
261 # endif // NDEBUG for EXPECT_DEBUG_DEATH
  /external/protobuf/gtest/include/gtest/
gtest-death-test.h 202 // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
221 // EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
239 // EXPECT_DEBUG_DEATH({
247 #define EXPECT_DEBUG_DEATH(statement, regex) \
255 #define EXPECT_DEBUG_DEATH(statement, regex) \
261 #endif // NDEBUG for EXPECT_DEBUG_DEATH
  /external/regex-re2/util/
sparse_array_test.cc 112 EXPECT_DEBUG_DEATH(str_map_.set(-123456789, "hi"),
119 EXPECT_DEBUG_DEATH(str_map_.set(12345678, "hi"),
126 EXPECT_DEBUG_DEATH(str_map_.set_new(-123456789, "hi"),
133 EXPECT_DEBUG_DEATH({
144 EXPECT_DEBUG_DEATH(str_map_.set_new(12345678, "hi"),
  /external/protobuf/src/google/protobuf/io/
printer_unittest.cc 230 EXPECT_DEBUG_DEATH(printer.Print("$nosuchvar$"), "Undefined variable");
231 EXPECT_DEBUG_DEATH(printer.Print("$unclosed"), "Unclosed variable name");
232 EXPECT_DEBUG_DEATH(printer.Outdent(), "without matching Indent");
tokenizer_unittest.cc 511 EXPECT_DEBUG_DEATH(Tokenizer::ParseInteger("zxy", kuint64max, &i),
513 EXPECT_DEBUG_DEATH(Tokenizer::ParseInteger("1.2", kuint64max, &i),
515 EXPECT_DEBUG_DEATH(Tokenizer::ParseInteger("08", kuint64max, &i),
517 EXPECT_DEBUG_DEATH(Tokenizer::ParseInteger("0xg", kuint64max, &i),
519 EXPECT_DEBUG_DEATH(Tokenizer::ParseInteger("-1", kuint64max, &i),
566 EXPECT_DEBUG_DEATH(Tokenizer::ParseFloat("zxy"),
568 EXPECT_DEBUG_DEATH(Tokenizer::ParseFloat("1-e0"),
570 EXPECT_DEBUG_DEATH(Tokenizer::ParseFloat("-1.0"),
596 EXPECT_DEBUG_DEATH(Tokenizer::ParseString("", &output),
  /external/chromium/sdch/open-vcdiff/src/
addrcache_test.cc 369 EXPECT_DEBUG_DEATH(cache_.EncodeAddress(-1, -1, &dummy_encoded_address),
375 EXPECT_DEBUG_DEATH(cache_.EncodeAddress(0x100, 0x100, &dummy_encoded_address),
377 EXPECT_DEBUG_DEATH(cache_.EncodeAddress(0x200, 0x100, &dummy_encoded_address),
384 EXPECT_DEBUG_DEATH(EXPECT_EQ(RESULT_ERROR,
390 EXPECT_DEBUG_DEATH(EXPECT_EQ(RESULT_ERROR,
406 EXPECT_DEBUG_DEATH(cache_.DecodeAddress(-1,
513 EXPECT_DEBUG_DEATH(EXPECT_EQ(RESULT_ERROR,
encodetable_test.cc 173 EXPECT_DEBUG_DEATH(standard_writer.Add("Hello", 5),
181 EXPECT_DEBUG_DEATH(standard_writer.Run(3, 'a'),
189 EXPECT_DEBUG_DEATH(standard_writer.Copy(6, 5),
499 EXPECT_DEBUG_DEATH(interleaved_writer.Copy(0x7FFFFFFE, 8),
blockhash_test.cc 683 EXPECT_DEBUG_DEATH(th_->AddAllBlocksThroughIndex(index_of_fourth_e - 3),
685 EXPECT_DEBUG_DEATH(th_->AddAllBlocksThroughIndex(index_of_first_e + 1),
733 EXPECT_DEBUG_DEATH(EXPECT_EQ(-1, NextMatchingBlock(*dh_, 0xFFFFFFFE, " ")),
740 EXPECT_DEBUG_DEATH(EXPECT_FALSE(bh.Init(false)), "twice");
745 EXPECT_DEBUG_DEATH(bh.AddAllBlocksThroughIndex(index_of_first_e),
750 EXPECT_DEBUG_DEATH(th_->AddAllBlocksThroughIndex(strlen(sample_text) + 1),
    [all...]
rolling_hash_test.cc 89 EXPECT_DEBUG_DEATH(RollingHash<16> bad_hash, "Init");
vcdecoder4_test.cc     [all...]
vcdiffengine_test.cc 394 EXPECT_DEBUG_DEATH(EXPECT_FALSE(const_cast<VCDiffEngine*>(&engine_)->Init()),
    [all...]
vcencoder_test.cc     [all...]
  /external/chromium/net/spdy/
spdy_protocol_test.cc 234 // in opt mode. Note: The EXPECT_DEBUG_DEATH call does not work on Win32 yet,
240 // TODO(mbelshe): implement EXPECT_DEBUG_DEATH on windows.
242 EXPECT_DEBUG_DEATH(frame.set_stream_id(~0), "");
248 EXPECT_DEBUG_DEATH(frame.set_length(~0), "");
  /external/protobuf/src/google/protobuf/
message_unittest.cc 213 EXPECT_DEBUG_DEATH(EXPECT_TRUE(message.SerializeToString(&data)),
extension_set_unittest.cc 477 EXPECT_DEBUG_DEATH(
repeated_field_unittest.cc 265 EXPECT_DEBUG_DEATH(field.Truncate(field.size() + 1), "new_size");
  /external/chromium/testing/gtest/test/
gtest-death-test_test.cc 564 // Tests that EXPECT_DEBUG_DEATH works as expected,
574 EXPECT_DEBUG_DEATH(DieInDebugElse12(&sideeffect),
624 EXPECT_DEBUG_DEATH(return, "") << "This is expected to fail.";
641 // Tests that EXPECT_DEBUG_DEATH in debug mode does not abort
    [all...]
  /external/gtest/test/
gtest-death-test_test.cc 564 // Tests that EXPECT_DEBUG_DEATH works as expected,
574 EXPECT_DEBUG_DEATH(DieInDebugElse12(&sideeffect),
624 EXPECT_DEBUG_DEATH(return, "") << "This is expected to fail.";
641 // Tests that EXPECT_DEBUG_DEATH in debug mode does not abort
    [all...]
  /external/protobuf/gtest/test/
gtest-death-test_test.cc 552 // Tests that EXPECT_DEBUG_DEATH works as expected,
562 EXPECT_DEBUG_DEATH(DieInDebugElse12(&sideeffect),
604 EXPECT_DEBUG_DEATH(return, "") << "This is expected to fail.";
632 // Tests that EXPECT_DEBUG_DEATH in debug mode does not abort
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc     [all...]
  /frameworks/compile/mclinker/utils/gtest/include/
gtest.h     [all...]

Completed in 617 milliseconds