llvm-6502/unittests/ADT/Makefile
Dale Johannesen ce97b75c1d 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
2010-02-09 22:15:27 +00:00

24 lines
624 B
Makefile

##===- unittests/ADT/Makefile ------------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ../..
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