1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

ErrorOrTest.cpp: Check existence of EXPECT_DEBUG_DEATH. It is not always available.

llvm-svn: 173123
This commit is contained in:
NAKAMURA Takumi 2013-01-22 04:02:41 +00:00
parent 26348eb62c
commit 65a1d5e982

View File

@ -28,7 +28,9 @@ TEST(ErrorOr, SimpleValue) {
a = t2();
EXPECT_FALSE(a);
EXPECT_EQ(errc::invalid_argument, a);
#ifdef EXPECT_DEBUG_DEATH
EXPECT_DEBUG_DEATH(*a, "Cannot get value when an error exists");
#endif
}
#if LLVM_HAS_CXX11_STDLIB