]>
Commit | Line | Data |
---|---|---|
0959b6d4 A |
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 | ## | |
23 | TESTROOT = ../.. | |
24 | include ${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 | ||
33 | run: all | |
34 | 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 | |
35 | 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 | |
36 | ||
37 | all: main locations/real/libfoo.dylib locations/exec/libfoo.dylib locations/datafile/libfoo.dylib locations/dir/libfoo.dylib | |
38 | ||
39 | main: main.c locations/real/libfoo.dylib | |
40 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main main.c locations/real/libfoo.dylib | |
41 | ||
42 | ||
43 | # real dylib to use | |
44 | locations/real/libfoo.dylib : foo.c | |
45 | mkdir -p locations/real | |
46 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -dynamiclib -o locations/real/libfoo.dylib foo.c -install_name libfoo.dylib | |
47 | ||
48 | # not a dylib - but a mach-o main executable | |
49 | locations/exec/libfoo.dylib : main.c | |
50 | mkdir -p locations/exec | |
51 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -o locations/exec/libfoo.dylib main.c foo.c | |
52 | ||
53 | # some random data file | |
54 | locations/datafile/libfoo.dylib : main.c | |
55 | mkdir -p locations/datafile | |
56 | cat main.c > locations/datafile/libfoo.dylib | |
57 | ||
58 | # not a file - but a directory | |
59 | locations/dir/libfoo.dylib : | |
60 | mkdir -p locations/dir/libfoo.dylib | |
61 | ||
62 | # file with wrong architecture | |
63 | #locations/wrongarch/libfoo.dylib : | |
64 | # mkdir -p locations/wrongarch | |
65 | # ${CC} ${CCFLAGS} -I${TESTROOT}/include -dynamiclib -o locations/wrongarch/libfoo.dylib foo.c -install_name libfoo.dylib -arch ppc64 | |
66 | ||
67 | ||
68 | ||
69 | clean: | |
70 | ${RM} ${RMFLAGS} *~ main locations | |
71 |