From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 5E08A3858434; Wed, 7 Feb 2024 14:12:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5E08A3858434 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1707315173; bh=BbF8O1qU/i1Js/4QmgURY9MtyWYHH/q+4SEOx86EHCk=; h=From:To:Subject:Date:From; b=ylPD5DYHLmFA6OaPYeJulHS2TO9Bg0VSf56PPjglB30U0icrq9N9D23jAb4xtwEd7 lSfOQn7Z2/+s2I3SgRJmf9AZ7fXEkVPdNafIPUYuM5spwRkp02NeEBq81za9JBHXb9 9HwFu2dLfoM5Ah/y2j7hX3+KjLm/K6rLHeP9tHN0= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/azanella/clang] elf: Disable unload4 test on clang X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: 4f4faba57c79e14db379331f8cd1932b02525b2b X-Git-Newrev: c133a1498b86941e2618118ba31aee2efac1a832 Message-Id: <20240207141253.5E08A3858434@sourceware.org> Date: Wed, 7 Feb 2024 14:12:53 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c133a1498b86941e2618118ba31aee2efac1a832 commit c133a1498b86941e2618118ba31aee2efac1a832 Author: Adhemerval Zanella Date: Fri Aug 26 09:24:25 2022 -0300 elf: Disable unload4 test on clang It triggers and infintie loop. Diff: --- elf/unload4.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/elf/unload4.c b/elf/unload4.c index 6e171a22e0..97ab6dafcc 100644 --- a/elf/unload4.c +++ b/elf/unload4.c @@ -5,6 +5,10 @@ int main (void) { +#ifdef __clang__ + /* It triggers an infinite loop on clang. */ + return 77; +#else #ifdef M_PERTURB mallopt (M_PERTURB, 0xaa); #endif @@ -45,4 +49,5 @@ main (void) } dlclose (h); return 0; +#endif }