aboutsummaryrefslogtreecommitdiff
path: root/unittests/ADT/APIntTest.cpp
diff options
context:
space:
mode:
authorErick Tryzelaar <idadesub@users.sourceforge.net>2009-08-17 00:55:33 +0000
committerErick Tryzelaar <idadesub@users.sourceforge.net>2009-08-17 00:55:33 +0000
commit2ad40a3663cb06c5f6d89a22933e22dc8b985574 (patch)
tree995ff3aabd8e4221ca831fea4b0cfdd85bdb10b7 /unittests/ADT/APIntTest.cpp
parent33d7dd6dc86704c749c0b95ac512962f54e9af5a (diff)
Wrap unit test death tests in GTEST_HAS_DEATH_TEST
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79218 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ADT/APIntTest.cpp')
-rw-r--r--unittests/ADT/APIntTest.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/unittests/ADT/APIntTest.cpp b/unittests/ADT/APIntTest.cpp
index 207c6337b8..dc8ba33635 100644
--- a/unittests/ADT/APIntTest.cpp
+++ b/unittests/ADT/APIntTest.cpp
@@ -172,6 +172,7 @@ TEST(APIntTest, fromString) {
EXPECT_EQ(APInt(1, 1), APInt(1, "1", 16));
}
+#ifdef GTEST_HAS_DEATH_TEST
TEST(APIntTest, StringDeath) {
EXPECT_DEATH(APInt(0, "", 0), "bitwidth too small");
EXPECT_DEATH(APInt(32, "", 0), "Radix should be 2, 8, 10, or 16!");
@@ -182,5 +183,6 @@ TEST(APIntTest, StringDeath) {
EXPECT_DEATH(APInt(32, StringRef("1\02", 3), 10), "Invalid character in digit string");
EXPECT_DEATH(APInt(32, "1L", 10), "Invalid character in digit string");
}
+#endif
}