mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 16:45:06 -05:00
905ca77c9e
when more than FD_SETSIZE file descriptors are open. This means that if for any reason we are not able to open more than FD_SETSIZE file descriptors then test 518 should not be run. test 537 is all about testing libcurl functionality when the system has nearly exhausted the number of free file descriptors. Test 537 will try to run with very few free file descriptors.
157 lines
4.8 KiB
Makefile
157 lines
4.8 KiB
Makefile
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at http://curl.haxx.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# $Id$
|
|
###########################################################################
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
# $(top_srcdir)/include/curl is for the main curl include files, to make it
|
|
# easier to include this specific set of curl headers, and NOT the ones
|
|
# possibly already installed in the system.
|
|
# -I$(top_srcdir)/lib is for the setup.h file, included by test.h
|
|
# -I$(top_builddir)/lib is for the config.h file, possibly included by the
|
|
# setup.h file
|
|
|
|
INCLUDES = -I$(top_srcdir)/include/curl \
|
|
-I$(top_builddir)/lib \
|
|
-I$(top_srcdir)/lib
|
|
|
|
LIBDIR = $(top_builddir)/lib
|
|
|
|
# these files are used in every single test program below
|
|
SUPPORTFILES = first.c test.h
|
|
|
|
# These are all libcurl test programs
|
|
noinst_PROGRAMS = lib500 lib501 lib502 lib503 lib504 lib505 lib506 \
|
|
lib507 lib508 lib509 lib510 lib511 lib512 lib513 lib514 lib515 lib516 \
|
|
lib517 lib518 lib519 lib520 lib521 lib523 lib524 lib525 lib526 lib527 \
|
|
lib529 lib530 lib532 lib533 lib536 lib537
|
|
|
|
# Dependencies (may need to be overriden)
|
|
LDADD = $(LIBDIR)/libcurl.la
|
|
DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib500_SOURCES = lib500.c $(SUPPORTFILES)
|
|
lib500_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib501_SOURCES = lib501.c $(SUPPORTFILES)
|
|
lib501_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib502_SOURCES = lib502.c $(SUPPORTFILES)
|
|
lib502_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib503_SOURCES = lib503.c $(SUPPORTFILES)
|
|
lib503_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib504_SOURCES = lib504.c $(SUPPORTFILES)
|
|
lib504_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib505_SOURCES = lib505.c $(SUPPORTFILES)
|
|
lib505_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib506_SOURCES = lib506.c $(SUPPORTFILES)
|
|
lib506_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib507_SOURCES = lib507.c $(SUPPORTFILES)
|
|
lib507_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib508_SOURCES = lib508.c $(SUPPORTFILES)
|
|
lib508_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib509_SOURCES = lib509.c $(SUPPORTFILES)
|
|
lib509_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib510_SOURCES = lib510.c $(SUPPORTFILES)
|
|
lib510_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib511_SOURCES = lib511.c $(SUPPORTFILES)
|
|
lib511_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib512_SOURCES = lib512.c $(SUPPORTFILES)
|
|
lib512_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib513_SOURCES = lib513.c $(SUPPORTFILES)
|
|
lib513_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib514_SOURCES = lib514.c $(SUPPORTFILES)
|
|
lib514_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib515_SOURCES = lib515.c $(SUPPORTFILES)
|
|
lib515_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib516_SOURCES = lib516.c $(SUPPORTFILES)
|
|
lib516_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib517_SOURCES = lib517.c $(SUPPORTFILES)
|
|
lib517_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib518_SOURCES = lib518.c $(SUPPORTFILES)
|
|
lib518_CFLAGS = -DLIB518
|
|
lib518_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib519_SOURCES = lib519.c $(SUPPORTFILES)
|
|
lib519_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib520_SOURCES = lib520.c $(SUPPORTFILES)
|
|
lib520_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib521_SOURCES = lib521.c $(SUPPORTFILES)
|
|
lib521_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib523_SOURCES = lib523.c $(SUPPORTFILES)
|
|
lib523_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib524_SOURCES = lib524.c $(SUPPORTFILES)
|
|
lib524_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib525_SOURCES = lib525.c $(SUPPORTFILES)
|
|
lib525_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib526_SOURCES = lib526.c $(SUPPORTFILES)
|
|
lib526_CFLAGS = -DLIB526
|
|
lib526_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib527_SOURCES = lib526.c $(SUPPORTFILES)
|
|
lib527_CFLAGS = -DLIB527
|
|
lib527_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib529_SOURCES = lib525.c $(SUPPORTFILES)
|
|
lib529_CFLAGS = -DLIB529
|
|
lib529_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib530_SOURCES = lib530.c $(SUPPORTFILES)
|
|
lib530_CFLAGS = -DLIB530
|
|
lib530_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib532_SOURCES = lib526.c $(SUPPORTFILES)
|
|
lib532_CFLAGS = -DLIB532
|
|
lib532_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib533_SOURCES = lib533.c $(SUPPORTFILES)
|
|
lib533_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib536_SOURCES = lib536.c $(SUPPORTFILES)
|
|
lib536_DEPENDENCIES = $(DEPENDENCIES)
|
|
|
|
lib537_SOURCES = lib518.c $(SUPPORTFILES)
|
|
lib537_CFLAGS = -DLIB537
|
|
lib537_DEPENDENCIES = $(DEPENDENCIES)
|
|
|