aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ADT/BitVectorTest.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-02-09 22:15:27 +0000
committerDale Johannesen <dalej@apple.com>2010-02-09 22:15:27 +0000
commit7c7b9a2807f6dc7de55150c1e9e999082dee14eb (patch)
treebf1eee051e365a8d7a188a317f326216eb95fe92 /llvm/unittests/ADT/BitVectorTest.cpp
parent8aef06f8eb168e830858a59b89949b7e37f45678 (diff)
downloadllvm-7c7b9a2807f6dc7de55150c1e9e999082dee14eb.zip
llvm-7c7b9a2807f6dc7de55150c1e9e999082dee14eb.tar.gz
llvm-7c7b9a2807f6dc7de55150c1e9e999082dee14eb.tar.bz2
Disable unittests/ADT/BitVectorTest on PPC Darwin.
It fails with a release build only, for reasons as yet unknown. (If there's a better way to Xfail things here let me know, doesn't seem to be any prior art in unittests.) llvm-svn: 95700
Diffstat (limited to 'llvm/unittests/ADT/BitVectorTest.cpp')
-rw-r--r--llvm/unittests/ADT/BitVectorTest.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/unittests/ADT/BitVectorTest.cpp b/llvm/unittests/ADT/BitVectorTest.cpp
index 5348281..f04eb60 100644
--- a/llvm/unittests/ADT/BitVectorTest.cpp
+++ b/llvm/unittests/ADT/BitVectorTest.cpp
@@ -7,6 +7,7 @@
//
//===----------------------------------------------------------------------===//
+#ifndef XFAIL
#include "llvm/ADT/BitVector.h"
#include "gtest/gtest.h"
@@ -138,3 +139,4 @@ TEST(BitVectorTest, TrivialOperation) {
}
}
+#endif