diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-01 14:05:31 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-04-15 11:32:40 -0300 |
commit | 48ec055ddc475bd521d87733a4d128b62681d6d7 (patch) | |
tree | 1154e21b79b625d277c0e27f2ea8ea881955db9b /posix/tst-wait3.c | |
parent | ef8239f13a49f2b43fa04cb8aa67c21c538537a3 (diff) | |
download | glibc-48ec055ddc475bd521d87733a4d128b62681d6d7.zip glibc-48ec055ddc475bd521d87733a4d128b62681d6d7.tar.gz glibc-48ec055ddc475bd521d87733a4d128b62681d6d7.tar.bz2 |
posix: Add wait3 tests
The tst-wait4 is moved to common file and used for wait3
tests.
Checked on x86_64-linux-gnu and i686-linux-gnu.
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'posix/tst-wait3.c')
-rw-r--r-- | posix/tst-wait3.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/posix/tst-wait3.c b/posix/tst-wait3.c new file mode 100644 index 0000000..27411c0 --- /dev/null +++ b/posix/tst-wait3.c @@ -0,0 +1,22 @@ +/* Tests for wait3. + Copyright (C) 2021 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <https://www.gnu.org/licenses/>. */ + +#define WAIT_CALL(__pid, __wstatus, __options, __rusage) \ + wait3 (__wstatus, __options, __rusage) + +#include "tst-wait-skeleton.c" |