1##
2# Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
3#
4# @APPLE_LICENSE_HEADER_START@
5# 
6# This file contains Original Code and/or Modifications of Original Code
7# as defined in and that are subject to the Apple Public Source License
8# Version 2.0 (the 'License'). You may not use this file except in
9# compliance with the License. Please obtain a copy of the License at
10# http://www.opensource.apple.com/apsl/ and read it before using this
11# file.
12# 
13# The Original Code and all software distributed under the License are
14# distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15# EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16# INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18# Please see the License for the specific language governing rights and
19# limitations under the License.
20# 
21# @APPLE_LICENSE_HEADER_END@
22##
23TESTROOT = ../..
24include ${TESTROOT}/include/common.makefile
25
26#
27#  This test the ability of dyld to continue searching if a file was found but not usable.
28#  Uses DYLD_LIBRARY_PATH to search through many bogus files 
29#
30#
31
32
33all-check: all check
34
35check:
36	export DYLD_LIBRARY_PATH=locations/datafile:locations/exec:locations/dir && ${TESTROOT}/bin/exit-non-zero-pass.pl "ignore-bad-files intended failure" "ignore-bad-files intended failure" ./main
37	export DYLD_LIBRARY_PATH=locations/datafile:locations/exec:locations/dir:locations/real && ${TESTROOT}/bin/exit-zero-pass.pl "ignore-bad-files intended success" "ignore-bad-files intended success" ./main
38
39all: main locations/real/libfoo.dylib locations/exec/libfoo.dylib locations/datafile/libfoo.dylib locations/dir/libfoo.dylib 
40
41main: main.c locations/real/libfoo.dylib
42	${CC} ${CCFLAGS} -I${TESTROOT}/include -o main main.c locations/real/libfoo.dylib
43
44
45# real dylib to use
46locations/real/libfoo.dylib : foo.c
47	mkdir -p locations/real
48	${CC} ${CCFLAGS} -I${TESTROOT}/include -dynamiclib -o locations/real/libfoo.dylib foo.c -install_name libfoo.dylib
49
50# not a dylib - but a mach-o main executable
51locations/exec/libfoo.dylib : main.c
52	mkdir -p locations/exec
53	${CC} ${CCFLAGS} -I${TESTROOT}/include -o locations/exec/libfoo.dylib main.c foo.c
54
55# some random data file
56locations/datafile/libfoo.dylib : main.c
57	mkdir -p locations/datafile
58	cat main.c > locations/datafile/libfoo.dylib
59
60# not a file - but a directory
61locations/dir/libfoo.dylib : 
62	mkdir -p locations/dir/libfoo.dylib
63
64# file with wrong architecture
65#locations/wrongarch/libfoo.dylib : 
66#	mkdir -p locations/wrongarch
67#	${CC} ${CCFLAGS} -I${TESTROOT}/include -dynamiclib -o locations/wrongarch/libfoo.dylib foo.c -install_name libfoo.dylib -arch ppc64
68
69
70
71clean:
72	${RM} ${RMFLAGS} *~ main locations
73
74