aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Makefile.am
diff options
context:
space:
mode:
authorPekka Paalanen <ppaalanen@gmail.com>2012-04-20 14:22:51 +0300
committerPekka Paalanen <ppaalanen@gmail.com>2012-04-20 15:06:27 +0300
commitda6b1a8e4774234c2dbdd9f2875de21b41086d00 (patch)
tree66b63cf24dcdc24cfd1b1b562f788e935184ca2d /tests/Makefile.am
parenttests: plug fd leaks in free_source_with_data (diff)
downloadwayland-da6b1a8e4774234c2dbdd9f2875de21b41086d00.tar
wayland-da6b1a8e4774234c2dbdd9f2875de21b41086d00.tar.gz
wayland-da6b1a8e4774234c2dbdd9f2875de21b41086d00.tar.bz2
wayland-da6b1a8e4774234c2dbdd9f2875de21b41086d00.tar.lz
wayland-da6b1a8e4774234c2dbdd9f2875de21b41086d00.tar.xz
wayland-da6b1a8e4774234c2dbdd9f2875de21b41086d00.tar.zst
wayland-da6b1a8e4774234c2dbdd9f2875de21b41086d00.zip
tests: support testing fd inheritance over exec
Add facility for testing how (many) file descriptors survive an exec. This allows implementing O_CLOEXEC tests. Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r--tests/Makefile.am16
1 files changed, 12 insertions, 4 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 7224778..af76c5f 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,7 +1,4 @@
-TESTS = $(check_PROGRAMS)
-
-
-check_PROGRAMS = \
+my_check_programs = \
sanity-test \
array-test \
map-test \
@@ -10,6 +7,12 @@ check_PROGRAMS = \
event-loop-test \
client-test
+TESTS = $(my_check_programs)
+
+check_PROGRAMS = \
+ $(my_check_programs) \