From: Dale Johannesen Date: Tue, 9 Feb 2010 22:15:27 +0000 (+0000) Subject: Disable unittests/ADT/BitVectorTest on PPC Darwin. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ce97b75c1d507808abcb67635cfcdce2f48e53c9;p=oota-llvm.git 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.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95700 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/ADT/BitVectorTest.cpp b/unittests/ADT/BitVectorTest.cpp index 534828192c0..f04eb60179e 100644 --- a/unittests/ADT/BitVectorTest.cpp +++ b/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 diff --git a/unittests/ADT/Makefile b/unittests/ADT/Makefile index c56b9517049..fe0832894d3 100644 --- a/unittests/ADT/Makefile +++ b/unittests/ADT/Makefile @@ -12,4 +12,12 @@ TESTNAME = ADT LINK_COMPONENTS := core support include $(LEVEL)/Makefile.config + +# Xfail BitVectorTest for now on PPC Darwin. 7598360. +ifeq ($(ARCH),PowerPC) +ifeq ($(TARGET_OS),Darwin) +CPP.Flags += -DXFAIL +endif +endif + include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest