aboutsummaryrefslogtreecommitdiffstats
path: root/tests/sanity-test.c
diff options
context:
space:
mode:
authorDerek Foreman <derek.foreman@collabora.com>2022-01-05 16:20:49 -0600
committerSimon Ser <contact@emersion.fr>2022-01-10 09:52:00 +0000
commitea237db7f66affd0ace847411ec2d7737fc79114 (patch)
treee3a584776325f526489547fecbdb33658e40d12d /tests/sanity-test.c
parentprotocol: clarify wl_shm_pool.resize (diff)
downloadwayland-ea237db7f66affd0ace847411ec2d7737fc79114.tar
wayland-ea237db7f66affd0ace847411ec2d7737fc79114.tar.gz
wayland-ea237db7f66affd0ace847411ec2d7737fc79114.tar.bz2
wayland-ea237db7f66affd0ace847411ec2d7737fc79114.tar.lz
wayland-ea237db7f66affd0ace847411ec2d7737fc79114.tar.xz
wayland-ea237db7f66affd0ace847411ec2d7737fc79114.tar.zst
wayland-ea237db7f66affd0ace847411ec2d7737fc79114.zip
tests: Fix tc_client_fd_leaks_exec test
tc_client_fd_leaks and tc_client_fd_leaks_exec are currently the exact same test. It seems clear from the name that the latter was intended to spawn sanity_fd_leak_exec instead of sanity_fd_leak. Fixes #121 Signed-off-by: Derek Foreman <derek.foreman@collabora.com>
Diffstat (limited to 'tests/sanity-test.c')
-rw-r--r--tests/sanity-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sanity-test.c b/tests/sanity-test.c
index 98beca8..1a33c12 100644
--- a/tests/sanity-test.c
+++ b/tests/sanity-test.c
@@ -174,7 +174,7 @@ FAIL_TEST(tc_client_fd_leaks_exec)
{
struct display *d = display_create();
- client_create_noarg(d, sanity_fd_leak);
+ client_create_noarg(d, sanity_fd_leak_exec);
display_run(d);
test_disable_coredumps();