From patchwork Sat Jan 6 21:22:08 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 25256 Received: (qmail 93007 invoked by alias); 6 Jan 2018 21:22:13 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 92997 invoked by uid 89); 6 Jan 2018 21:22:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_NEUTRAL autolearn=ham version=3.3.2 spammy= X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault Subject: [hurd,commited] hurd: Fix posix glob test Date: Sat, 6 Jan 2018 22:22:08 +0100 Message-Id: <20180106212208.30217-1-samuel.thibault@ens-lyon.org> * posix/tst-glob_symlinks.c [!PATH_MAX]: Define PATH_MAX macro. --- ChangeLog | 1 + posix/tst-glob_symlinks.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7e02feed9a..8bc25a4f87 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Likewise. * sysdeps/i386/fpu/libm-test-ulps: Regenerated for GCC 7 with "-O2 -march=i686". + * posix/tst-glob_symlinks.c [!PATH_MAX]: Define PATH_MAX macro. 2018-01-05 Tulio Magno Quites Machado Filho diff --git a/posix/tst-glob_symlinks.c b/posix/tst-glob_symlinks.c index 0f3478d3d0..df3baa8757 100644 --- a/posix/tst-glob_symlinks.c +++ b/posix/tst-glob_symlinks.c @@ -57,6 +57,9 @@ create_link (const char *base, const char *fname, char *linkname, add_temp_file (linkname); } +#ifndef PATH_MAX +# define PATH_MAX 1024 +#endif static char valid_link[PATH_MAX]; static char dangling_link[PATH_MAX]; static char dangling_dir[PATH_MAX];