From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5306 invoked by alias); 14 Dec 2012 23:32:56 -0000 Received: (qmail 5183 invoked by uid 48); 14 Dec 2012 23:31:37 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug sanitizer/55679] new asan tests from r194458 fail on x86_64-apple-darwin10 Date: Fri, 14 Dec 2012 23:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: sanitizer X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-12/txt/msg01515.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55679 --- Comment #14 from Dominique d'Humieres 2012-12-14 23:31:37 UTC --- Concerning the failure of c-c++-common/asan/rlimit-mmap-test-1.c, I have looked at the man for setrlimit. For Linux I see: RLIMIT_AS ... RLIMIT_CORE ... RLIMIT_CPU ... RLIMIT_DATA ... RLIMIT_FSIZE ... RLIMIT_LOCKS (Early Linux 2.4 only) ... RLIMIT_MEMLOCK ... RLIMIT_MSGQUEUE (Since Linux 2.6.8) ... RLIMIT_NICE (since Linux 2.6.12, but see BUGS below) ... RLIMIT_NOFILE ... RLIMIT_NPROC ... RLIMIT_RSS ... RLIMIT_RTPRIO (Since Linux 2.6.12, but see BUGS) ... RLIMIT_RTTIME (Since Linux 2.6.25) ... RLIMIT_SIGPENDING (Since Linux 2.6.8) ... RLIMIT_STACK ... But for darwin I only see: RLIMIT_CORE ... RLIMIT_CPU ... RLIMIT_DATA ... RLIMIT_FSIZE ... RLIMIT_MEMLOCK ... RLIMIT_NOFILE ... RLIMIT_NPROC ... RLIMIT_RSS ... RLIMIT_STACK ...