diff options
author | Frédéric Bérat <fberat@redhat.com> | 2023-06-02 17:28:11 +0200 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2023-06-06 08:23:53 -0400 |
commit | f6a532fbd0f430dc4ded254d713d89fcbafc1b7e (patch) | |
tree | 877e228c5be9426c828c3bd79ad8c5d9515b420f /posix/wordexp-test.c | |
parent | 8c4f69d711481a18c70cb9a6c0a5367604894320 (diff) | |
download | glibc-f6a532fbd0f430dc4ded254d713d89fcbafc1b7e.tar.gz glibc-f6a532fbd0f430dc4ded254d713d89fcbafc1b7e.tar.xz glibc-f6a532fbd0f430dc4ded254d713d89fcbafc1b7e.zip |
tests: Replace various function calls with their x variant
With fortification enabled, few function calls return result need to be checked, has they get the __wur macro enabled. Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'posix/wordexp-test.c')
-rw-r--r-- | posix/wordexp-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/wordexp-test.c b/posix/wordexp-test.c index 524597d96b..28d1d1509b 100644 --- a/posix/wordexp-test.c +++ b/posix/wordexp-test.c @@ -336,7 +336,7 @@ do_test (int argc, char *argv[]) if (cwd == NULL) cwd = ".."; - chdir (cwd); + xchdir (cwd); rmdir (tmpdir); return 0; |