Searched refs:ASSERT_DEATH (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/base/allocator/
H A Dtcmalloc_unittest.cc20 ASSERT_DEATH(TCMallocDoFreeForTest(p + offset),
32 ASSERT_DEATH(TCMallocDoFreeForTest(p + offset),
35 ASSERT_DEATH(TCMallocDoFreeForTest(p + kMaxSize),
42 ASSERT_DEATH(TCMallocDoFreeForTest(p); TCMallocDoFreeForTest(p),
53 ASSERT_DEATH(TCMallocDoFreeForTest(p); TCMallocDoFreeForTest(p),
66 ASSERT_DEATH(TCMallocDoFreeForTest(p); TCMallocDoFreeForTest(p),
72 ASSERT_DEATH(TCMallocDoFreeForTest(p); TCMallocDoFreeForTest(p),
/external/chromium_org/base/process/
H A Dmemory_unittest.cc146 ASSERT_DEATH(free(buf), "");
150 ASSERT_DEATH(free(buf), "attempting free on address which "
153 ASSERT_DEATH(free(buf), "being freed.*\\n?\\.*"
207 // should be done inside of the ASSERT_DEATH.
213 ASSERT_DEATH({
220 ASSERT_DEATH({
227 ASSERT_DEATH({
234 ASSERT_DEATH({
241 ASSERT_DEATH({
248 ASSERT_DEATH({
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableRowTest.cpp70 // FIXME: Re-enable these tests once ASSERT_DEATH is supported for Android.
76 ASSERT_DEATH(m_row->setRowIndex(maxRowIndex + 1), "");
81 ASSERT_DEATH(m_row->setRowIndex(unsetRowIndex), "");
H A DRenderTableCellTest.cpp64 // FIXME: Re-enable these tests once ASSERT_DEATH is supported for Android.
70 ASSERT_DEATH(m_cell->setCol(maxColumnIndex + 1), "");
75 ASSERT_DEATH(m_cell->setCol(unsetColumnIndex), "");
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest-death-test.h67 // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
85 // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
179 # define ASSERT_DEATH(statement, regex) \ macro
182 // Like ASSERT_DEATH, but continues on to successive tests in the
270 ASSERT_DEATH(statement, regex)
284 ASSERT_DEATH(statement, regex)
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest-death-test.h56 // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
74 // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
168 # define ASSERT_DEATH(statement, regex) \ macro
171 // Like ASSERT_DEATH, but continues on to successive tests in the
259 ASSERT_DEATH(statement, regex)
273 ASSERT_DEATH(statement, regex)
/external/gtest/include/gtest/
H A Dgtest-death-test.h67 // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
85 // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
179 # define ASSERT_DEATH(statement, regex) \ macro
182 // Like ASSERT_DEATH, but continues on to successive tests in the
270 ASSERT_DEATH(statement, regex)
284 ASSERT_DEATH(statement, regex)
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-death-test.h56 // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
74 // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
168 # define ASSERT_DEATH(statement, regex) \ macro
171 // Like ASSERT_DEATH, but continues on to successive tests in the
259 ASSERT_DEATH(statement, regex)
273 ASSERT_DEATH(statement, regex)
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-death-test.h56 // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
74 // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
168 # define ASSERT_DEATH(statement, regex) \ macro
171 // Like ASSERT_DEATH, but continues on to successive tests in the
259 ASSERT_DEATH(statement, regex)
273 ASSERT_DEATH(statement, regex)
/external/protobuf/gtest/include/gtest/
H A Dgtest-death-test.h56 // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
74 // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
168 #define ASSERT_DEATH(statement, regex) \ macro
171 // Like ASSERT_DEATH, but continues on to successive tests in the
259 ASSERT_DEATH(statement, regex)
273 ASSERT_DEATH(statement, regex)
/external/chromium_org/base/threading/
H A Dnon_thread_safe_unittest.cc127 ASSERT_DEATH({
152 ASSERT_DEATH({
H A Dthread_checker_unittest.cc139 ASSERT_DEATH({
168 ASSERT_DEATH({
/external/chromium_org/third_party/webrtc/base/
H A Dthread_checker_unittest.cc162 ASSERT_DEATH({
191 ASSERT_DEATH({
/external/chromium_org/base/
H A Dsequence_checker_unittest.cc201 ASSERT_DEATH({
230 ASSERT_DEATH({
259 ASSERT_DEATH({
286 ASSERT_DEATH({
319 ASSERT_DEATH({
/external/chromium_org/remoting/base/
H A Dbreakpad_win_unittest.cc147 ASSERT_DEATH(*reinterpret_cast<int*>(NULL) = 1, "");
165 ASSERT_DEATH(__debugbreak(), "");
/external/chromium_org/testing/gtest/test/
H A Dgtest-death-test_test.cc192 // Tests that ASSERT_DEATH can be used outside a TEST, TEST_F, or test fixture.
195 ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction");
291 ASSERT_DEATH(return, "");
301 ASSERT_DEATH(return, "") << "did not die";
316 // Tests that EXPECT_DEATH and ASSERT_DEATH work when the error
322 ASSERT_DEATH(DieWithEmbeddedNul(), "my null world");
335 ASSERT_DEATH(_exit(1), "") << "exit in default switch handler";
348 ASSERT_DEATH(StaticMemberFunction(), "death.*StaticMember");
370 ASSERT_DEATH(_exit(1), "");
429 ASSERT_DEATH(StaticMemberFunctio
[all...]
/external/gtest/test/
H A Dgtest-death-test_test.cc192 // Tests that ASSERT_DEATH can be used outside a TEST, TEST_F, or test fixture.
195 ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction");
291 ASSERT_DEATH(return, "");
301 ASSERT_DEATH(return, "") << "did not die";
316 // Tests that EXPECT_DEATH and ASSERT_DEATH work when the error
322 ASSERT_DEATH(DieWithEmbeddedNul(), "my null world");
338 ASSERT_DEATH(_exit(1), "") << "exit in default switch handler";
353 ASSERT_DEATH(StaticMemberFunction(), "death.*StaticMember");
375 ASSERT_DEATH(_exit(1), "");
434 ASSERT_DEATH(StaticMemberFunctio
[all...]
/external/protobuf/gtest/test/
H A Dgtest-death-test_test.cc184 // Tests that ASSERT_DEATH can be used outside a TEST, TEST_F, or test fixture.
187 ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction");
279 ASSERT_DEATH(return, "");
289 ASSERT_DEATH(return, "") << "did not die";
304 // Tests that EXPECT_DEATH and ASSERT_DEATH work when the error
310 ASSERT_DEATH(DieWithEmbeddedNul(), "my null world");
326 ASSERT_DEATH(_exit(1), "") << "exit in default switch handler";
341 ASSERT_DEATH(StaticMemberFunction(), "death.*StaticMember");
363 ASSERT_DEATH(_exit(1), "");
370 ASSERT_DEATH(StaticMemberFunctio
[all...]
/external/chromium_org/base/message_loop/
H A Dmessage_pump_libevent_unittest.cc80 ASSERT_DEATH(io_loop()->WatchFileDescriptor(
88 ASSERT_DEATH(pump->Quit(), "Check failed: in_run_. "
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Daddress_data_test.cc199 ASSERT_DEATH(address.GetFieldValue(STREET_ADDRESS), "ssertion.*failed");
204 ASSERT_DEATH(address.GetRepeatedFieldValue(COUNTRY), "ssertion.*failed");
210 ASSERT_DEATH(address.IsFieldEmpty(invalid_field), "ssertion.*failed");
/external/chromium_org/base/memory/
H A Dweak_ptr_unittest.cc528 ASSERT_DEATH(background.DeRef(arrow_copy), "");
550 ASSERT_DEATH(background.DeRef(&arrow), "");
570 ASSERT_DEATH(target.reset(), "");
593 ASSERT_DEATH(background.DeleteTarget(target.release()), "");
613 ASSERT_DEATH(arrow.target.get(), "");
/external/chromium_org/sql/
H A Dconnection_unittest.cc628 ASSERT_DEATH({
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h8340 // This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*,
8429 // iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on
8448 // compile inside functions where ASSERT_DEATH doesn't
8457 // macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH.
8502 // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
8520 // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
8614 # define ASSERT_DEATH(statement, regex) \ macro
8617 // Like ASSERT_DEATH, but continues on to successive tests in the
8705 ASSERT_DEATH(statement, regex)
8719 ASSERT_DEATH(statemen
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h8340 // This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*,
8429 // iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on
8448 // compile inside functions where ASSERT_DEATH doesn't
8457 // macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH.
8502 // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
8520 // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
8614 # define ASSERT_DEATH(statement, regex) \ macro
8617 // Like ASSERT_DEATH, but continues on to successive tests in the
8705 ASSERT_DEATH(statement, regex)
8719 ASSERT_DEATH(statemen
[all...]

Completed in 6095 milliseconds