Tests: fix: select_poll_epoll: test assumes epoll fd value
[lttng-tools.git] / tests / regression / kernel / Makefile.am
CommitLineData
9d16b343
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
436b5b74
AW
3
4EXTRA_DIST = test_all_events \
b6d14cf3 5 test_callstack \
436b5b74 6 test_channel \
b6d14cf3
FD
7 test_clock_override \
8 test_event_basic \
9 test_kernel_function \
10 test_lttng_logger \
11 test_ns_contexts \
12 test_ns_contexts_change
13 test_rotation_destroy_flush \
14 test_select_poll_epoll \
15 test_syscall \
16 test_userspace_probe \
17 validate_select_poll_epoll.py
a0b1f42c
JD
18
19noinst_PROGRAMS = select_poll_epoll
d40c2620
JG
20select_poll_epoll_SOURCES = select_poll_epoll.cpp
21select_poll_epoll_LDADD = $(POPT_LIBS) $(top_builddir)/src/common/libcommon-lgpl.la
016f0450 22select_poll_epoll_CFLAGS = $(POPT_CFLAGS) -fno-stack-protector -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 $(AM_CFLAGS)
c83e7ca0
DG
23
24all-local:
25 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
26 for script in $(EXTRA_DIST); do \
27 cp -f $(srcdir)/$$script $(builddir); \
28 done; \
29 fi
30
31clean-local:
32 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
33 for script in $(EXTRA_DIST); do \
34 rm -f $(builddir)/$$script; \
35 done; \
36 fi
This page took 0.041905 seconds and 4 git commands to generate.