mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
af10702e49
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
24 lines
624 B
Makefile
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
|