340 lines
7.2 KiB
Makefile
340 lines
7.2 KiB
Makefile
# Automake input for strace tests.
|
|
#
|
|
# Copyright (c) 2011-2015 Dmitry V. Levin <ldv@altlinux.org>
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
# 3. The name of the author may not be used to endorse or promote products
|
|
# derived from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
OS = linux
|
|
ARCH = @arch@
|
|
ARCH_MFLAGS =
|
|
AM_CFLAGS = $(WARN_CFLAGS)
|
|
AM_CPPFLAGS = $(ARCH_MFLAGS) \
|
|
-I$(builddir) \
|
|
-I$(top_builddir)/$(OS)/$(ARCH) \
|
|
-I$(top_srcdir)/$(OS)/$(ARCH) \
|
|
-I$(top_builddir)/$(OS) \
|
|
-I$(top_srcdir)/$(OS) \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir)
|
|
AM_LDFLAGS = $(ARCH_MFLAGS)
|
|
|
|
check_PROGRAMS = \
|
|
_newselect \
|
|
adjtimex \
|
|
aio \
|
|
bpf \
|
|
caps \
|
|
clock_nanosleep \
|
|
clock_xettime \
|
|
epoll_create1 \
|
|
eventfd \
|
|
execve \
|
|
execveat \
|
|
fanotify_mark \
|
|
fcntl \
|
|
fcntl64 \
|
|
file_handle \
|
|
filter-unavailable \
|
|
fork-f \
|
|
fstat \
|
|
fstat64 \
|
|
fstatat64 \
|
|
ftruncate \
|
|
ftruncate64 \
|
|
getdents \
|
|
getdents64 \
|
|
getrandom \
|
|
inet-accept-connect-send-recv \
|
|
inet-cmsg \
|
|
ioctl \
|
|
ip_mreq \
|
|
ipc_msg \
|
|
ipc_msgbuf \
|
|
ipc_sem \
|
|
ipc_shm \
|
|
ksysent \
|
|
llseek \
|
|
lseek \
|
|
lstat \
|
|
lstat64 \
|
|
membarrier \
|
|
memfd_create \
|
|
mlock2 \
|
|
mmap \
|
|
mmap64 \
|
|
mmsg \
|
|
mq \
|
|
nanosleep \
|
|
net-accept-connect \
|
|
netlink_inet_diag \
|
|
netlink_unix_diag \
|
|
newfstatat \
|
|
oldselect \
|
|
pc \
|
|
personality \
|
|
pipe \
|
|
ppoll \
|
|
pselect6 \
|
|
readdir \
|
|
readlink \
|
|
readlinkat \
|
|
restart_syscall \
|
|
rt_sigqueueinfo \
|
|
sched_xetattr \
|
|
scm_rights \
|
|
seccomp \
|
|
select \
|
|
sendfile \
|
|
sendfile64 \
|
|
set_ptracer_any \
|
|
sigaction \
|
|
sigaltstack \
|
|
signalfd \
|
|
sigreturn \
|
|
stack-fcall \
|
|
stat \
|
|
stat64 \
|
|
statfs \
|
|
sysinfo \
|
|
time \
|
|
timer_create \
|
|
timer_xettime \
|
|
timerfd_xettime \
|
|
times \
|
|
times-fail \
|
|
truncate \
|
|
truncate64 \
|
|
uid \
|
|
uid16 \
|
|
uid32 \
|
|
uio \
|
|
umount \
|
|
umount2 \
|
|
umovestr \
|
|
umovestr2 \
|
|
unix-pair-send-recv \
|
|
userfaultfd \
|
|
utime \
|
|
utimensat \
|
|
vfork-f \
|
|
wait \
|
|
xattr \
|
|
xet_robust_list \
|
|
xetitimer \
|
|
xettimeofday \
|
|
# end of check_PROGRAMS
|
|
|
|
clock_xettime_LDADD = -lrt
|
|
filter_unavailable_LDADD = -lpthread
|
|
fstat64_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
fstatat64_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
ftruncate64_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
lstat64_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
mmap64_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
mq_LDADD = -lrt
|
|
newfstatat_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
pc_LDADD = $(dl_LIBS)
|
|
stat64_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
statfs_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
times_LDADD = -lrt
|
|
truncate64_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
uio_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
stack_fcall_SOURCES = stack-fcall.c \
|
|
stack-fcall-0.c stack-fcall-1.c stack-fcall-2.c stack-fcall-3.c
|
|
|
|
TESTS = \
|
|
strace-f.test \
|
|
qual_syscall.test \
|
|
ksysent.test \
|
|
\
|
|
_newselect.test \
|
|
adjtimex.test \
|
|
aio.test \
|
|
bexecve.test \
|
|
bpf.test \
|
|
caps.test \
|
|
clock_nanosleep.test \
|
|
clock_xettime.test \
|
|
dumpio.test \
|
|
epoll_create1.test \
|
|
eventfd.test \
|
|
execve.test \
|
|
execveat.test \
|
|
fanotify_mark.test \
|
|
fcntl.test \
|
|
fcntl64.test \
|
|
file_handle.test \
|
|
filter-unavailable.test \
|
|
fork-f.test \
|
|
fstat.test \
|
|
fstat64.test \
|
|
fstatat64.test \
|
|
ftruncate.test \
|
|
ftruncate64.test \
|
|
getdents.test \
|
|
getdents64.test \
|
|
getrandom.test \
|
|
inet-cmsg.test \
|
|
ioctl.test \
|
|
ip_mreq.test \
|
|
ipc_msg.test \
|
|
ipc_msgbuf.test \
|
|
ipc_sem.test \
|
|
ipc_shm.test \
|
|
llseek.test \
|
|
lseek.test \
|
|
lstat.test \
|
|
lstat64.test \
|
|
membarrier.test \
|
|
memfd_create.test \
|
|
mlock2.test \
|
|
mmap.test \
|
|
mmap64.test \
|
|
mmsg.test \
|
|
mq.test \
|
|
nanosleep.test \
|
|
net-fd.test \
|
|
net-yy.test \
|
|
net.test \
|
|
newfstatat.test \
|
|
oldselect.test \
|
|
pc.test \
|
|
personality.test \
|
|
pipe.test \
|
|
ppoll.test \
|
|
pselect6.test \
|
|
readdir.test \
|
|
readlink.test \
|
|
readlinkat.test \
|
|
rt_sigqueueinfo.test \
|
|
sched_xetattr.test \
|
|
scm_rights-fd.test \
|
|
seccomp.test \
|
|
select.test \
|
|
sendfile.test \
|
|
sendfile64.test \
|
|
sigaction.test \
|
|
sigaltstack.test \
|
|
signalfd.test \
|
|
sigreturn.test \
|
|
stat.test \
|
|
stat64.test \
|
|
statfs.test \
|
|
sun_path.test \
|
|
sysinfo.test \
|
|
time.test \
|
|
timer_create.test \
|
|
timer_xettime.test \
|
|
timerfd_xettime.test \
|
|
times-fail.test \
|
|
times.test \
|
|
truncate.test \
|
|
truncate64.test \
|
|
uid.test \
|
|
uid16.test \
|
|
uid32.test \
|
|
uio.test \
|
|
umount.test \
|
|
umount2.test \
|
|
umovestr.test \
|
|
umovestr2.test \
|
|
unix-yy.test \
|
|
userfaultfd.test \
|
|
utime.test \
|
|
utimensat.test \
|
|
vfork-f.test \
|
|
wait.test \
|
|
xattr.test \
|
|
xet_robust_list.test \
|
|
xetitimer.test \
|
|
xettimeofday.test \
|
|
\
|
|
count.test \
|
|
detach-sleeping.test \
|
|
detach-stopped.test \
|
|
detach-running.test \
|
|
restart_syscall.test \
|
|
strace-k.test
|
|
|
|
net-fd.log: net.log
|
|
|
|
TEST_LOG_COMPILER = env
|
|
AM_TEST_LOG_FLAGS = STRACE_ARCH=$(ARCH) $(srcdir)/run.sh
|
|
|
|
EXTRA_DIST = init.sh run.sh match.awk \
|
|
caps.awk \
|
|
dumpio.expected \
|
|
epoll_create1.expected \
|
|
eventfd.expected \
|
|
execve.expected \
|
|
execve-v.expected \
|
|
execveat.expected \
|
|
execveat-v.expected \
|
|
fanotify_mark.expected \
|
|
filter-unavailable.expected \
|
|
fstatat.c \
|
|
fstatx.c \
|
|
ip_mreq.expected \
|
|
ipc.sh \
|
|
ipc_msgbuf.expected \
|
|
ksysent.sed \
|
|
lstatx.c \
|
|
memfd_create.expected \
|
|
mmsg.expected \
|
|
mq.expected \
|
|
net.expected \
|
|
net-fd.expected \
|
|
net-yy-accept.awk \
|
|
net-yy-connect.awk \
|
|
oldselect.expected \
|
|
pipe.expected \
|
|
ppoll.expected \
|
|
ppoll-v.expected \
|
|
sigaction.awk \
|
|
sigaltstack.expected \
|
|
signalfd.expected \
|
|
statfs.expected \
|
|
statx.sh \
|
|
struct_flock.c \
|
|
sun_path.expected \
|
|
uid.awk \
|
|
uio.expected \
|
|
umovestr.expected \
|
|
unix-yy-accept.awk \
|
|
unix-yy-connect.awk \
|
|
wait.expected \
|
|
xattr.expected \
|
|
xselect.c \
|
|
xstatx.c \
|
|
$(TESTS)
|
|
|
|
ksysent.h: $(srcdir)/ksysent.sed
|
|
echo '#include <asm/unistd.h>' | \
|
|
$(CPP) $(AM_CPPFLAGS) $(CPPFLAGS) -dD - > $@.t1
|
|
LC_COLLATE=C sed -n -f $(srcdir)/ksysent.sed < $@.t1 > $@.t2
|
|
mv -f $@.t2 $@
|
|
rm -f $@.t1
|
|
|
|
BUILT_SOURCES = ksysent.h
|
|
CLEANFILES = ksysent.h $(TESTS:=.tmp)
|