2009-09-23 09:00:37 -07:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is Mozilla Firefox.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# The Mozilla Foundation <http://www.mozilla.org/>.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
|
|
|
DEPTH = ../../../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
2009-10-06 11:02:26 -07:00
|
|
|
|
|
|
|
TOOL_DIRS += app
|
|
|
|
|
|
|
|
MODULE = ipdlunittest
|
|
|
|
|
|
|
|
EXPORTS_NAMESPACES = mozilla/_ipdltest
|
|
|
|
EXPORTS_mozilla/_ipdltest = \
|
|
|
|
IPDLUnitTests.h \
|
2010-05-10 21:18:00 -07:00
|
|
|
IPDLUnitTestProcessChild.h \
|
2009-12-03 00:16:09 -08:00
|
|
|
IPDLUnitTestTypes.h \
|
2009-10-06 11:02:26 -07:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
LIBRARY_NAME = $(MODULE)_s
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
EXPORT_LIBRARY = 1
|
|
|
|
|
2009-10-16 16:31:53 -07:00
|
|
|
IPDLTESTS = \
|
2010-03-18 15:52:34 -07:00
|
|
|
TestBlockChild \
|
2010-01-11 22:14:31 -08:00
|
|
|
TestCrashCleanup \
|
2010-05-22 12:35:37 -07:00
|
|
|
TestDataStructures \
|
2010-03-18 15:52:34 -07:00
|
|
|
TestDesc \
|
2010-02-11 12:32:17 -08:00
|
|
|
TestHangs \
|
2010-05-22 12:35:40 -07:00
|
|
|
TestJSON \
|
2010-03-18 15:52:34 -07:00
|
|
|
TestLatency \
|
2009-10-06 11:05:47 -07:00
|
|
|
TestManyChildAllocs \
|
2010-01-26 20:56:14 -08:00
|
|
|
TestMultiMgrs \
|
2010-03-18 15:52:34 -07:00
|
|
|
TestNestedLoops \
|
|
|
|
TestRPCErrorCleanup \
|
|
|
|
TestRPCRaces \
|
|
|
|
TestRPCShutdownRace \
|
|
|
|
TestRacyRPCReplies \
|
|
|
|
TestSanity \
|
2010-04-26 18:11:48 -07:00
|
|
|
TestSelfManageRoot \
|
2009-12-04 10:45:21 -08:00
|
|
|
TestShmem \
|
2009-12-03 00:16:28 -08:00
|
|
|
TestShutdown \
|
2010-03-18 15:52:34 -07:00
|
|
|
TestStackHooks \
|
|
|
|
TestSyncWakeup \
|
2010-08-10 14:14:10 -07:00
|
|
|
TestSyncHang \
|
2009-10-06 11:02:26 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2010-04-15 22:29:17 -07:00
|
|
|
ifeq ($(OS_ARCH),Linux)
|
|
|
|
IPDLTESTS += TestSysVShmem
|
|
|
|
endif
|
|
|
|
|
2009-10-06 11:02:26 -07:00
|
|
|
IPDLTESTSRCS = $(addsuffix .cpp,$(IPDLTESTS))
|
|
|
|
IPDLTESTHDRS = $(addprefix $(srcdir)/,$(addsuffix .h,$(IPDLTESTS)))
|
|
|
|
|
|
|
|
TESTER_TEMPLATE := $(srcdir)/IPDLUnitTests.template.cpp
|
|
|
|
GENTESTER := $(srcdir)/genIPDLUnitTests.py
|
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
IPDLUnitTests.cpp \
|
|
|
|
IPDLUnitTestSubprocess.cpp \
|
2010-05-10 21:18:00 -07:00
|
|
|
IPDLUnitTestProcessChild.cpp \
|
2009-10-06 11:02:26 -07:00
|
|
|
$(IPDLTESTSRCS) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
2009-09-23 09:00:37 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
|
2009-12-06 23:10:52 -08:00
|
|
|
IPDLUNITTEST_BIN = $(DEPTH)/dist/bin/ipdlunittest$(BIN_SUFFIX)
|
2009-10-06 11:02:26 -07:00
|
|
|
|
2009-12-09 12:53:52 -08:00
|
|
|
IPDLUnitTests.cpp : Makefile.in $(GENTESTER) $(TESTER_TEMPLATE) $(IPDLTESTHDRS)
|
|
|
|
$(PYTHON) $(GENTESTER) $(TESTER_TEMPLATE) $(IPDLTESTS) > $@
|
2009-10-06 11:02:26 -07:00
|
|
|
|
2009-09-23 09:00:37 -07:00
|
|
|
check::
|
2009-10-06 11:02:26 -07:00
|
|
|
@$(EXIT_ON_ERROR) \
|
|
|
|
for test in $(IPDLTESTS); do \
|
2009-12-06 23:10:52 -08:00
|
|
|
$(RUN_TEST_PROGRAM) $(IPDLUNITTEST_BIN) $$test ; \
|
|
|
|
done
|
|
|
|
|
|
|
|
check-valgrind::
|
|
|
|
@$(EXIT_ON_ERROR) \
|
|
|
|
for test in $(IPDLTESTS); do \
|
|
|
|
$(RUN_TEST_PROGRAM) -g -d \
|
2010-01-13 19:08:36 -08:00
|
|
|
valgrind -a '--leak-check=full --trace-children=yes -q' \
|
2009-12-06 23:10:52 -08:00
|
|
|
$(IPDLUNITTEST_BIN) $$test ; \
|
2009-10-06 11:02:26 -07:00
|
|
|
done
|