mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
176 lines
4.3 KiB
Makefile
176 lines
4.3 KiB
Makefile
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
relativesrcdir = @relativesrcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = xpcom
|
|
|
|
DIRS = \
|
|
external \
|
|
component \
|
|
bug656331_component \
|
|
component_no_aslr \
|
|
$(NULL)
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
DIRS += windows
|
|
endif
|
|
|
|
ifdef DEHYDRA_PATH
|
|
DIRS += static-checker
|
|
endif
|
|
|
|
VPATH += $(topsrcdir)/build
|
|
|
|
CPPSRCS = \
|
|
nsIFileEnumerator.cpp \
|
|
TestCallTemplates.cpp \
|
|
TestINIParser.cpp \
|
|
TestRacingServiceManager.cpp \
|
|
TestRegistrationOrder.cpp \
|
|
TestThreadPoolListener.cpp \
|
|
TestTimers.cpp \
|
|
TestBlockingProcess.cpp \
|
|
TestQuickReturn.cpp \
|
|
TestArguments.cpp \
|
|
TestUnicodeArguments.cpp \
|
|
$(STDCPPFLAGS) \
|
|
$(NULL)
|
|
|
|
ifeq ($(OS_TARGET),WINNT)
|
|
CPPSRCS += TestBase64.cpp
|
|
endif
|
|
|
|
ifdef WRAP_STL_INCLUDES
|
|
CPPSRCS += TestSTLWrappers.cpp
|
|
endif
|
|
|
|
SIMPLE_PROGRAMS := $(CPPSRCS:.cpp=$(BIN_SUFFIX))
|
|
|
|
CPP_UNIT_TESTS = \
|
|
ShowAlignments.cpp \
|
|
ShowSSEConfig.cpp \
|
|
TestAutoPtr.cpp \
|
|
TestAutoRef.cpp \
|
|
TestBloomFilter.cpp \
|
|
TestCOMArray.cpp \
|
|
TestCOMPtr.cpp \
|
|
TestCOMPtrEq.cpp \
|
|
TestDeque.cpp \
|
|
TestFile.cpp \
|
|
TestHashtables.cpp \
|
|
TestID.cpp \
|
|
TestObserverArray.cpp \
|
|
TestObserverService.cpp \
|
|
TestPipe.cpp \
|
|
TestRefPtr.cpp \
|
|
TestSettingsAPI.cpp \
|
|
TestTextFormatter.cpp \
|
|
TestTArray.cpp \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_MEMORY
|
|
CPP_UNIT_TESTS += TestJemalloc.cpp
|
|
endif
|
|
|
|
# XXX Make this tests work in libxul builds.
|
|
#CPP_UNIT_TESTS += \
|
|
# TestArray.cpp \
|
|
# TestCRT.cpp \
|
|
# TestEncoding.cpp \
|
|
# TestExpirationTracker.cpp \
|
|
# TestPipes.cpp \
|
|
# TestPriorityQueue.cpp \
|
|
# TestStorageStream.cpp \
|
|
# TestStrings.cpp \
|
|
# TestSynchronization.cpp \
|
|
# TestTArray.cpp \
|
|
# TestThreadPool.cpp \
|
|
# TestThreads.cpp \
|
|
# TestTimeStamp.cpp \
|
|
# TestXPIDLString.cpp \
|
|
# TestUTF.cpp \
|
|
# TestAtoms.cpp \
|
|
# $(NULL)
|
|
## FIXME: bug 577500 TestStaticAtoms fails when run in dist/bin
|
|
## TestStaticAtoms.cpp
|
|
|
|
ifdef MOZ_DEBUG
|
|
# FIXME bug 523392: TestDeadlockDetector doesn't like Windows
|
|
# FIXME bug 523378: also fails on OS X
|
|
ifneq (,$(filter-out WINNT Darwin,$(OS_ARCH)))
|
|
CPP_UNIT_TESTS += \
|
|
TestDeadlockDetector.cpp \
|
|
TestDeadlockDetectorScalability.cpp \
|
|
$(NULL)
|
|
endif
|
|
endif
|
|
|
|
ifndef MOZILLA_INTERNAL_API
|
|
CPP_UNIT_TESTS += \
|
|
TestStringAPI.cpp \
|
|
$(NULL)
|
|
endif
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
LIBS += $(XPCOM_LIBS)
|
|
|
|
# Needed to resolve __yylex (?)
|
|
ifeq ($(OS_ARCH)$(OS_RELEASE),FreeBSD2)
|
|
LIBS += -lpcap
|
|
endif
|
|
|
|
XPCSHELL_TESTS = unit
|
|
|
|
# Make sure we have symbols in case we need to debug these.
|
|
MOZ_DEBUG_SYMBOLS = 1
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(srcdir)/../ds \
|
|
$(NULL)
|
|
|
|
libs::
|
|
$(INSTALL) $(srcdir)/test.properties $(DIST)/bin/res
|
|
ifneq (,$(SIMPLE_PROGRAMS))
|
|
$(INSTALL) $(SIMPLE_PROGRAMS) $(DEPTH)/_tests/xpcshell/$(relativesrcdir)/unit
|
|
endif
|
|
|
|
# Copy TestHarness.h into its own module, for ease of setting up includes
|
|
# correctly.
|
|
export::
|
|
$(NSINSTALL) -D $(DIST)/include/testing
|
|
$(INSTALL) $(srcdir)/TestHarness.h $(DIST)/include/testing
|
|
|
|
install::
|
|
$(SYSINSTALL) $(IFLAGS1) $(srcdir)/test.properties $(DESTDIR)$(mozappdir)/res
|
|
|
|
ifeq (,$(filter-out WINNT os2-emx, $(HOST_OS_ARCH)))
|
|
getnativepath = $(call normalizepath,$(1))
|
|
else
|
|
getnativepath = $(1)
|
|
endif
|
|
|
|
abs_srcdir = $(call core_abspath,$(srcdir))
|
|
|
|
DIST_PATH = $(DIST)/bin/
|
|
RM_DIST = rm -f
|
|
regOrderDir="$(call getnativepath,$(abs_srcdir)/regorder)";
|
|
DOCOPY=
|
|
|
|
check::
|
|
XPCOM_DEBUG_BREAK=stack-and-abort $(RUN_TEST_PROGRAM) \
|
|
$(DIST)/bin/TestRegistrationOrder$(BIN_SUFFIX) $(regOrderDir)
|
|
|
|
GARBAGE += TestScriptable.h
|