blob: eb1e7d5c807e74e4991226b254c677377e616057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
prefix ?= /usr
datadir ?= $(prefix)/share
INSTALL=install
ifneq ($(MAKECMDGOALS),clean)
include ../config-host.mak
endif
CPPFLAGS ?=
override CPPFLAGS += \
-D_GNU_SOURCE \
-D__SANE_USERSPACE_TYPES__ \
-I../src/include/ \
-include ../config-host.h
CFLAGS ?= -g -O2 -Wall -Wextra
XCFLAGS = -Wno-unused-parameter -Wno-sign-compare
ifdef CONFIG_HAVE_STRINGOP_OVERFLOW
XCFLAGS += -Wstringop-overflow=0
endif
ifdef CONFIG_HAVE_ARRAY_BOUNDS
XCFLAGS += -Warray-bounds=0
endif
CXXFLAGS ?= $(CFLAGS)
override CFLAGS += $(XCFLAGS) -DLIBURING_BUILD_TEST
override CXXFLAGS += $(XCFLAGS) -std=c++11 -DLIBURING_BUILD_TEST
LDFLAGS ?=
override LDFLAGS += -L../src/ -luring -lpthread
test_srcs := \
232c93d07b74.c \
35fa71a030ca.c \
500f9fbadef8.c \
7ad0e4b2f83c.c \
8a9973408177.c \
917257daa0fe.c \
a0908ae19763.c \
a4c0b3decb33.c \
accept.c \
accept-link.c \
accept-reuse.c \
accept-test.c \
across-fork.c \
b19062a56726.c \
b5837bd5311d.c \
ce593a6c480a.c \
close-opath.c \
connect.c \
cq-full.c \
cq-overflow.c \
cq-peek-batch.c \
cq-ready.c \
cq-size.c \
d4ae271dfaae.c \
d77a67ed5f27.c \
defer.c \
double-poll-crash.c \
drop-submit.c \
eeed8b54e0df.c \
empty-eownerdead.c \
eventfd.c \
eventfd-disable.c \
eventfd-reg.c \
eventfd-ring.c \
exec-target.c \
exit-no-cleanup.c \
fadvise.c \
fallocate.c \
fc2a85cb02ef.c \
file-register.c \
files-exit-hang-poll.c \
files-exit-hang-timeout.c \
file-update.c \
file-verify.c \
fixed-buf-iter.c \
fixed-link.c \
fixed-reuse.c \
fpos.c \
fsync.c \
hardlink.c \
io-cancel.c \
iopoll.c \
io_uring_enter.c \
io_uring_register.c \
io_uring_setup.c \
lfs-openat.c \
lfs-openat-write.c \
link.c \
link_drain.c \
link-timeout.c \
madvise.c \
mkdir.c \
msg-ring.c \
multicqes_drain.c \
nop-all-sizes.c \
nop.c \
openat2.c \
open-close.c \
open-direct-link.c \
personality.c \
pipe-eof.c \
pipe-reuse.c \
poll.c \
poll-cancel.c \
poll-cancel-ton.c \
poll-link.c \
poll-many.c \
poll-mshot-update.c \
poll-ring.c \
poll-v-poll.c \
pollfree.c \
probe.c \
read-write.c \
recv-msgall.c \
recv-msgall-stream.c \
register-restrictions.c \
rename.c \
ring-leak2.c \
ring-leak.c \
rsrc_tags.c \
rw_merge_test.c \
self.c \
sendmsg_fs_cve.c \
send_recv.c \
send_recvmsg.c \
shared-wq.c \
short-read.c \
shutdown.c \
sigfd-deadlock.c \
socket-rw.c \
socket-rw-eagain.c \
socket-rw-offset.c \
splice.c \
sq-full.c \
sq-full-cpp.cc \
sqpoll-cancel-hang.c \
sqpoll-disable-exit.c \
sq-poll-dup.c \
sqpoll-exit-hang.c \
sq-poll-kthread.c \
sq-poll-share.c \
sqpoll-sleep.c \
sq-space_left.c \
stdout.c \
submit-link-fail.c \
submit-reuse.c \
symlink.c \
teardowns.c \
thread-exit.c \
timeout.c \
timeout-new.c \
timeout-overflow.c \
tty-write-dpoll.c \
unlink.c \
wakeup-hang.c \
skip-cqe.c \
# EOL
all_targets :=
include ../Makefile.quiet
ifdef CONFIG_HAVE_STATX
test_srcs += statx.c
endif
ifdef CONFIG_HAVE_GLIBC_STATX
test_srcs += statx.c
endif
all_targets += statx
ifdef CONFIG_HAVE_CXX
test_srcs += sq-full-cpp.cc
endif
all_targets += sq-full-cpp
test_targets := $(patsubst %.c,%,$(patsubst %.cc,%,$(test_srcs)))
all_targets += $(test_targets)
#
# Build ../src/syscall.c manually from test's Makefile to support
# liburing nolibc.
#
# Functions in ../src/syscall.c require libc to work with, if we
# build liburing without libc, we don't have those functions
# in liburing.a. So build it manually here.
#
helpers = helpers.o ../src/syscall.o
all: $(test_targets)
../src/syscall.o: ../src/syscall.c
$(QUIET_CC)$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ -c $<
helpers.o: helpers.c
$(QUIET_CC)$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ -c $<
%: %.c $(helpers) helpers.h ../src/liburing.a
$(QUIET_CC)$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(helpers) $(LDFLAGS)
%: %.cc $(helpers) helpers.h ../src/liburing.a
$(QUIET_CXX)$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $< $(helpers) $(LDFLAGS)
install: $(test_targets) runtests.sh runtests-loop.sh
$(INSTALL) -D -d -m 755 $(datadir)/liburing-test/
$(INSTALL) -D -m 755 $(test_targets) $(datadir)/liburing-test/
$(INSTALL) -D -m 755 runtests.sh $(datadir)/liburing-test/
$(INSTALL) -D -m 755 runtests-loop.sh $(datadir)/liburing-test/
clean:
@rm -f $(all_targets) helpers.o output/*
@rm -rf output/
runtests: all
@./runtests.sh $(test_targets)
runtests-loop: all
@./runtests-loop.sh $(test_targets)
.PHONY: all install clean runtests runtests-loop
|