2003-09-11 20:32:33 +00:00
|
|
|
# vim: noexpandtab ts=8 sw=8
|
1999-04-25 19:25:24 +00:00
|
|
|
#
|
2004-04-18 22:01:16 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-04-25 19:25:24 +00:00
|
|
|
#
|
2004-04-18 22:01:16 +00:00
|
|
|
# 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.
|
1999-04-25 19:25:24 +00:00
|
|
|
#
|
1999-11-06 03:40:37 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
2004-04-18 22:01:16 +00:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-11-06 03:40:37 +00:00
|
|
|
#
|
2004-04-18 22:01:16 +00:00
|
|
|
# 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.
|
1999-07-27 23:27:44 +00:00
|
|
|
#
|
2004-04-18 22:01:16 +00:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1999-04-25 19:25:24 +00:00
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2010-08-26 21:47:28 +00:00
|
|
|
relativesrcdir = netwerk/test
|
1999-04-25 19:25:24 +00:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2000-11-20 07:16:06 +00:00
|
|
|
MODULE = test_necko
|
2005-04-05 14:13:03 +00:00
|
|
|
|
2006-12-15 02:13:54 +00:00
|
|
|
DIRS = \
|
|
|
|
httpserver \
|
2010-07-23 21:59:07 +00:00
|
|
|
browser \
|
2006-12-15 02:13:54 +00:00
|
|
|
$(NULL)
|
|
|
|
|
1999-07-27 23:27:44 +00:00
|
|
|
|
2010-08-25 16:01:56 +00:00
|
|
|
SIMPLE_PROGRAMS = \
|
|
|
|
TestIncrementalDownload$(BIN_SUFFIX) \
|
|
|
|
TestStreamLoader$(BIN_SUFFIX) \
|
|
|
|
PropertiesTest$(BIN_SUFFIX) \
|
|
|
|
urltest$(BIN_SUFFIX) \
|
|
|
|
TestCallbacks$(BIN_SUFFIX) \
|
|
|
|
TestPageLoad$(BIN_SUFFIX) \
|
|
|
|
TestURLParser$(BIN_SUFFIX) \
|
|
|
|
TestStandardURL$(BIN_SUFFIX) \
|
|
|
|
TestUpload$(BIN_SUFFIX) \
|
|
|
|
TestBlockingSocket$(BIN_SUFFIX) \
|
|
|
|
TestDNS$(BIN_SUFFIX) \
|
|
|
|
TestOpen$(BIN_SUFFIX) \
|
|
|
|
TestCookie$(BIN_SUFFIX) \
|
|
|
|
TestServ$(BIN_SUFFIX) \
|
|
|
|
ReadNTLM$(BIN_SUFFIX) \
|
2003-10-06 01:46:31 +00:00
|
|
|
$(NULL)
|
2003-01-18 02:15:14 +00:00
|
|
|
|
2005-11-08 19:23:00 +00:00
|
|
|
ifndef MOZ_ENABLE_LIBXUL
|
2010-08-25 16:01:56 +00:00
|
|
|
SIMPLE_PROGRAMS += \
|
|
|
|
TestPerf$(BIN_SUFFIX) \
|
|
|
|
TestIDN$(BIN_SUFFIX) \
|
|
|
|
TestSocketTransport$(BIN_SUFFIX) \
|
|
|
|
TestStreamTransport$(BIN_SUFFIX) \
|
|
|
|
TestStreamChannel$(BIN_SUFFIX) \
|
|
|
|
TestStreamPump$(BIN_SUFFIX) \
|
|
|
|
TestProtocols$(BIN_SUFFIX) \
|
|
|
|
TestIOThreads$(BIN_SUFFIX) \
|
|
|
|
TestUDPSocketProvider$(BIN_SUFFIX) \
|
2005-11-08 19:23:00 +00:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2010-06-03 21:03:17 +00:00
|
|
|
CPP_UNIT_TESTS = \
|
|
|
|
TestSTSParser.cpp \
|
|
|
|
$(NULL)
|
|
|
|
|
1999-12-21 04:14:14 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
2003-09-11 20:32:33 +00:00
|
|
|
LIBS = $(EXTRA_DSO_LIBS) \
|
2005-11-08 19:23:00 +00:00
|
|
|
$(DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) \
|
2003-09-11 20:32:33 +00:00
|
|
|
$(XPCOM_LIBS) \
|
|
|
|
$(NSPR_LIBS) \
|
|
|
|
$(NULL)
|
1999-04-25 19:25:24 +00:00
|
|
|
|
2004-10-21 20:57:17 +00:00
|
|
|
DEFINES += $(TK_CFLAGS)
|
|
|
|
|
2007-01-31 03:25:46 +00:00
|
|
|
XPCSHELL_TESTS = unit
|
2009-10-17 07:05:27 +00:00
|
|
|
ifdef MOZ_IPC
|
2010-06-30 22:53:51 +00:00
|
|
|
# FIXME/bug 575918: out-of-process xpcshell is broken on OS X
|
|
|
|
ifneq ($(OS_ARCH),Darwin)
|
2009-10-17 07:05:27 +00:00
|
|
|
XPCSHELL_TESTS += unit_ipc
|
|
|
|
endif
|
2010-06-30 22:53:51 +00:00
|
|
|
endif
|
2006-01-27 20:56:16 +00:00
|
|
|
|
2007-01-31 03:25:46 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2005-03-25 03:41:33 +00:00
|
|
|
|
2005-08-11 16:41:54 +00:00
|
|
|
check::
|
2010-03-10 18:36:45 +00:00
|
|
|
$(RUN_TEST_PROGRAM) $(DIST)/bin/TestCookie$(BIN_SUFFIX)
|
2005-08-11 16:41:54 +00:00
|
|
|
|
2003-09-11 20:32:33 +00:00
|
|
|
_RES_FILES = urlparse.dat \
|
|
|
|
urlparse_unx.dat \
|
|
|
|
$(NULL)
|
2001-12-14 23:49:04 +00:00
|
|
|
libs:: $(_RES_FILES)
|
2005-03-25 03:41:33 +00:00
|
|
|
$(INSTALL) $^ $(DIST)/bin/res
|
2002-04-25 02:52:44 +00:00
|
|
|
install:: $(_RES_FILES)
|
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/res
|
2009-03-21 15:20:00 +00:00
|
|
|
|
|
|
|
# One of the xpcshell unit tests needs this file, so make sure it winds
|
|
|
|
# up in the test directory.
|
|
|
|
libs::
|
2010-08-26 21:47:28 +00:00
|
|
|
$(NSINSTALL) -D $(DEPTH)/_tests/xpcshell/$(relativesrcdir)/unit/data
|
2010-06-06 01:18:12 +00:00
|
|
|
$(INSTALL) $(topsrcdir)/netwerk/dns/effective_tld_names.dat \
|
2010-08-26 21:47:28 +00:00
|
|
|
$(DEPTH)/_tests/xpcshell/$(relativesrcdir)/unit/
|