]> git.saurik.com Git - apple/libpthread.git/blame - tests/Makefile
libpthread-416.11.1.tar.gz
[apple/libpthread.git] / tests / Makefile
CommitLineData
2546420a
A
1PROJECT := libpthread
2TEST_DIR := tests/
964d3577 3
a0619f9c
A
4ENABLE_LTE_TESTS=YES
5
2546420a
A
6ifeq ($(DEVELOPER_DIR),)
7 DEVELOPER_DIR := $(shell xcode-select -p)
8endif
3a6437e6 9
2546420a 10include $(DEVELOPER_DIR)/AppleInternal/Makefiles/darwintest/Makefile.common
3a6437e6 11
2546420a
A
12TARGETS :=
13TARGETS += atfork
14TARGETS += bsdthread_set_self
214d78a2
A
15TARGETS += stack
16TARGETS += stack_size
2546420a
A
17TARGETS += cond
18#TARGETS += cond_hang3
19#TARGETS += cond_stress
20TARGETS += cond_timed
214d78a2 21TARGETS += cond_prepost
2546420a
A
22TARGETS += custom_stack
23TARGETS += stack_aslr
24TARGETS += join
25TARGETS += main_stack
26TARGETS += main_stack_custom
a0619f9c 27TARGETS += detach
2546420a
A
28#TARGETS += maxwidth
29TARGETS += mutex
214d78a2 30TARGETS += mutex_prepost
2546420a
A
31TARGETS += mutex_try
32TARGETS += once_cancel
33TARGETS += pthread_attr_setstacksize
34TARGETS += pthread_bulk_create
35TARGETS += pthread_cancel
c6e5f90c 36TARGETS += pthread_create_from_mach_thread
2546420a
A
37TARGETS += pthread_cwd
38TARGETS += pthread_exit
39TARGETS += pthread_introspection
40TARGETS += pthread_setspecific
41TARGETS += pthread_threadid_np
a0619f9c 42TARGETS += pthread_get_qos_class_np
214d78a2 43TARGETS += pthread_dependency
2546420a 44#TARGETS += qos
a0619f9c 45TARGETS += rdar_32848402
2546420a
A
46#TARGETS += rwlock-22244050
47#TARGETS += rwlock-signal
48#TARGETS += rwlock
49TARGETS += tsd
c6e5f90c 50TARGETS += setrlimit_sigsegv
2546420a
A
51#TARGETS += wq_block_handoff
52#TARGETS += wq_event_manager
53#TARGETS += wq_kevent
54#TARGETS += wq_kevent_stress
a0619f9c 55TARGETS += wq_limits
2546420a 56TARGETS += add_timer_termination
214d78a2 57TARGETS += perf_contended_mutex_rwlock
964d3577 58
c6e5f90c
A
59# this should be CUSTOM_TARGETS, see "Compatibility defines" in Makefile.targets
60OTHER_TARGETS := stackoverflow_crash
61
a0619f9c
A
62OTHER_LTE_INCLUDE_FILES += \
63 /usr/local/lib/libdarwintest_utils.dylib
964d3577 64
2546420a
A
65OTHER_CFLAGS := -DDARWINTEST -Weverything \
66 -Wno-vla -Wno-bad-function-cast -Wno-missing-noreturn \
67 -Wno-missing-field-initializers -Wno-format-pedantic \
214d78a2 68 -Wno-gnu-folding-constant -Wno-used-but-marked-unused
2546420a 69OTHER_LDFLAGS := -ldarwintest_utils
964d3577 70
2546420a
A
71#TARGETS += main_stack_legacy // Disabled by default due to linker warnings
72#main_stack_legacy: OTHER_LDFLAGS += -Wl,-stack_addr,0xc1000000 -Wl,-stack_size,0x0f00000
73#main_stack_legacy: OTHER_CFLAGS += -DSTACKSIZE=0x0f00000
74#main_stack_legacy: ARCH_FLAGS = -arch i386
75#main_stack_legacy: DEPLOYMENT_TARGET_FLAGS = -mmacosx-version-min=10.7
964d3577 76
214d78a2
A
77main_stack_custom: OTHER_LDFLAGS += -Wl,-stack_size,0x124000
78main_stack_custom: OTHER_CFLAGS += -DSTACKSIZE=0x124000
964d3577 79
2546420a 80bsdthread_set_self: OTHER_CFLAGS += -D_DARWIN_FEATURE_CLOCK_GETTIME
3a6437e6 81
2546420a 82include $(DEVELOPER_DIR)/AppleInternal/Makefiles/darwintest/Makefile.targets
c6e5f90c
A
83
84stackoverflow_crash: helpers/stackoverflow_crash.c
85 mkdir -p $(SYMROOT)/assets/
86 $(CC) -o $(SYMROOT)/assets/$@ $(CFLAGS) -D_POSIX_C_SOURCE=1 $(OTHER_CFLAGS) $(LDFLAGS) $(OTHER_LDFLAGS) $<
87 env CODESIGN_ALLOCATE=$(CODESIGN_ALLOCATE) $(CODESIGN) --force --sign - --timestamp=none $(SYMROOT)/assets/$@
88
89install-stackoverflow_crash: stackoverflow_crash
90 mkdir -p $(INSTALLDIR)/assets
91 @cp $(SYMROOT)/assets/stackoverflow_crash $(INSTALLDIR)/assets