Dmitry V. Levin
23168c1e54
Check decoding of inaccessible or partially inaccessible arrays. * tests/execve-v.c: New file. * tests/execveat-v.c: Likewise. * tests/execve-v.test: New test. * tests/execveat-v.test: Likewise. * tests/execve.c: Rewrite. * tests/execveat.c: Likewise. * tests/execve.test: Likewise. * tests/execveat.test: Likewise. * tests/execve.expected: Remove. * tests/execve-v.expected: Likewise. * tests/execveat.expected: Likewise. * tests/execveat-v.expected: Likewise. * tests/.gitignore: Add execve-v and execveat-v. * tests/Makefile.am (check_PROGRAMS): Likewise. (TESTS): Add execve-v.test and execveat-v.test. (EXTRA_DIST): Remove execve.expected, execve-v.expected, execveat.expected, and execveat-v.expected.
376 lines
7.8 KiB
Makefile
376 lines
7.8 KiB
Makefile
# Automake input for strace tests.
|
|
#
|
|
# Copyright (c) 2011-2016 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@
|
|
MPERS_NAME =
|
|
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)
|
|
|
|
libtests_a_SOURCES = \
|
|
error_msg.c \
|
|
get_page_size.c \
|
|
hexdump_strdup.c \
|
|
hexquote_strndup.c \
|
|
inode_of_sockfd.c \
|
|
tail_alloc.c \
|
|
tests.h \
|
|
tprintf.c \
|
|
# end of libtests_a_SOURCES
|
|
libtests_a_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
check_LIBRARIES = libtests.a
|
|
LDADD = libtests.a
|
|
|
|
check_PROGRAMS = \
|
|
_newselect \
|
|
adjtimex \
|
|
aio \
|
|
attach-p-cmd-cmd \
|
|
attach-p-cmd-p \
|
|
bpf \
|
|
caps \
|
|
clock_nanosleep \
|
|
clock_xettime \
|
|
epoll_create1 \
|
|
eventfd \
|
|
execve \
|
|
execve-v \
|
|
execveat \
|
|
execveat-v \
|
|
fanotify_mark \
|
|
fcntl \
|
|
fcntl64 \
|
|
file_handle \
|
|
filter-unavailable \
|
|
fork-f \
|
|
fstat \
|
|
fstat64 \
|
|
fstatat64 \
|
|
ftruncate \
|
|
ftruncate64 \
|
|
getdents \
|
|
getdents64 \
|
|
getrandom \
|
|
getxxid \
|
|
inet-cmsg \
|
|
ioctl \
|
|
ip_mreq \
|
|
ipc_msg \
|
|
ipc_msgbuf \
|
|
ipc_sem \
|
|
ipc_shm \
|
|
ksysent \
|
|
llseek \
|
|
lseek \
|
|
lstat \
|
|
lstat64 \
|
|
membarrier \
|
|
memfd_create \
|
|
mincore \
|
|
mlock2 \
|
|
mmap \
|
|
mmap64 \
|
|
mmsg \
|
|
mq \
|
|
nanosleep \
|
|
net-accept-connect \
|
|
net-y-unix \
|
|
net-yy-inet \
|
|
net-yy-unix \
|
|
netlink_inet_diag \
|
|
netlink_unix_diag \
|
|
newfstatat \
|
|
oldselect \
|
|
pc \
|
|
personality \
|
|
pipe \
|
|
ppoll \
|
|
pselect6 \
|
|
readdir \
|
|
readlink \
|
|
readlinkat \
|
|
readv \
|
|
recvmsg \
|
|
restart_syscall \
|
|
rt_sigqueueinfo \
|
|
sched_xetaffinity \
|
|
sched_xetattr \
|
|
scm_rights \
|
|
seccomp \
|
|
select \
|
|
sendfile \
|
|
sendfile64 \
|
|
set_ptracer_any \
|
|
sigaction \
|
|
sigaltstack \
|
|
signalfd \
|
|
sigreturn \
|
|
stack-fcall \
|
|
sleep \
|
|
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 $(LDADD)
|
|
filter_unavailable_LDADD = -lpthread $(LDADD)
|
|
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 $(LDADD)
|
|
newfstatat_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
pc_LDADD = $(dl_LIBS) $(LDADD)
|
|
stat64_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
statfs_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
|
|
times_LDADD = -lrt $(LDADD)
|
|
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
|
|
|
|
if USE_LIBUNWIND
|
|
LIBUNWIND_TESTS = strace-k.test
|
|
else
|
|
LIBUNWIND_TESTS =
|
|
endif
|
|
|
|
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 \
|
|
execve-v.test \
|
|
execveat.test \
|
|
execveat-v.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 \
|
|
getxxid.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 \
|
|
mincore.test \
|
|
mlock2.test \
|
|
mmap.test \
|
|
mmap64.test \
|
|
mmsg.test \
|
|
mq.test \
|
|
nanosleep.test \
|
|
net-y-unix.test \
|
|
net-yy-inet.test \
|
|
net-yy-unix.test \
|
|
net.test \
|
|
newfstatat.test \
|
|
oldselect.test \
|
|
pc.test \
|
|
personality.test \
|
|
pipe.test \
|
|
ppoll.test \
|
|
pselect6.test \
|
|
readdir.test \
|
|
readlink.test \
|
|
readlinkat.test \
|
|
readv.test \
|
|
recvmsg.test \
|
|
rt_sigqueueinfo.test \
|
|
sched_xetaffinity.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 \
|
|
userfaultfd.test \
|
|
utime.test \
|
|
utimensat.test \
|
|
vfork-f.test \
|
|
wait.test \
|
|
xattr.test \
|
|
xet_robust_list.test \
|
|
xetitimer.test \
|
|
xettimeofday.test \
|
|
\
|
|
count.test \
|
|
attach-p-cmd.test \
|
|
detach-sleeping.test \
|
|
detach-stopped.test \
|
|
detach-running.test \
|
|
opipe.test \
|
|
redirect.test \
|
|
restart_syscall.test \
|
|
$(LIBUNWIND_TESTS)
|
|
|
|
XFAIL_TESTS_ =
|
|
XFAIL_TESTS_m32 = $(LIBUNWIND_TESTS)
|
|
XFAIL_TESTS_mx32 = $(LIBUNWIND_TESTS)
|
|
XFAIL_TESTS = $(XFAIL_TESTS_$(MPERS_NAME))
|
|
|
|
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 \
|
|
eventfd.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 \
|
|
mq.expected \
|
|
net.expected \
|
|
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 \
|
|
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)
|