From owner-freebsd-testing@FreeBSD.ORG Sun Jan 25 00:28:23 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDAC0D98 for ; Sun, 25 Jan 2015 00:28:23 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D2C067A0 for ; Sun, 25 Jan 2015 00:28:23 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0P0SNRL038510 for ; Sun, 25 Jan 2015 00:28:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 191906] pthread_cancel(NULL) on FreeBSD returns EINVAL, not ESRCH according to manpage Date: Sun, 25 Jan 2015 00:28:24 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: standards X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ngie@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jan 2015 00:28:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191906 --- Comment #7 from commit-hook@freebsd.org --- A commit references this bug: Author: ngie Date: Sun Jan 25 00:28:16 UTC 2015 New revision: 277664 URL: https://svnweb.freebsd.org/changeset/base/277664 Log: MFC r277278: r277278 (by ngie): Fix lib/libthr/tests/detach_test - Eliminate race with liberal use of sleep(3) [1] - Fix NetBSD-specific implementation way of testing result from pthread_cancel by testing with `td` instead of `NULL` [2] PR: 196738 [1] PR: 191906 [2] Sponsored by: EMC / Isilon Storage Division Changes: _U stable/10/ stable/10/contrib/netbsd-tests/lib/libpthread/t_detach.c -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-testing@FreeBSD.ORG Sun Jan 25 00:28:22 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75E35D90 for ; Sun, 25 Jan 2015 00:28:22 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D2C279B for ; Sun, 25 Jan 2015 00:28:22 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0P0SMmW038495 for ; Sun, 25 Jan 2015 00:28:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 196738] lib/libpthread/t_detach.c:76: rv == EINVAL not met Date: Sun, 25 Jan 2015 00:28:22 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: tests X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ngie@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: mfc-stable8- mfc-stable9- mfc-stable10+ X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jan 2015 00:28:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196738 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: ngie Date: Sun Jan 25 00:28:16 UTC 2015 New revision: 277664 URL: https://svnweb.freebsd.org/changeset/base/277664 Log: MFC r277278: r277278 (by ngie): Fix lib/libthr/tests/detach_test - Eliminate race with liberal use of sleep(3) [1] - Fix NetBSD-specific implementation way of testing result from pthread_cancel by testing with `td` instead of `NULL` [2] PR: 196738 [1] PR: 191906 [2] Sponsored by: EMC / Isilon Storage Division Changes: _U stable/10/ stable/10/contrib/netbsd-tests/lib/libpthread/t_detach.c -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-testing@FreeBSD.ORG Sun Jan 25 00:35:42 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84FE2311 for ; Sun, 25 Jan 2015 00:35:42 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B86F869 for ; Sun, 25 Jan 2015 00:35:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0P0ZgDY076668 for ; Sun, 25 Jan 2015 00:35:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 196738] lib/libpthread/t_detach.c:76: rv == EINVAL not met Date: Sun, 25 Jan 2015 00:35:42 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: tests X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ngie@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: mfc-stable8- mfc-stable9- mfc-stable10+ X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jan 2015 00:35:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196738 Garrett Cooper,425-314-3911 changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Closed Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-testing@FreeBSD.ORG Wed Jan 28 09:10:25 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4018A3AC for ; Wed, 28 Jan 2015 09:10:25 +0000 (UTC) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 124392D7 for ; Wed, 28 Jan 2015 09:10:24 +0000 (UTC) Received: from Julian-MBP3.local (ppp121-45-228-137.lns20.per1.internode.on.net [121.45.228.137]) (authenticated bits=0) by vps1.elischer.org (8.14.9/8.14.9) with ESMTP id t0S9AL5k007717 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 28 Jan 2015 01:10:23 -0800 (PST) (envelope-from julian@freebsd.org) Message-ID: <54C8A777.3060201@freebsd.org> Date: Wed, 28 Jan 2015 17:10:15 +0800 From: Julian Elischer User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: freebsd-testing@freebsd.org Subject: jenkins and stable-10-gcc Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jan 2015 09:10:25 -0000 Hi I hope I've come to the right place.. Gcc is supposed to be still supported in 10, but I have seen several breakages with 10 some of which have lasted some time. It would be good to have a jenkins gcc compile of 10-stable to catch these. Doesn't need to 'run' but compiling would be nice. (we are stuck with gcc for a while at work) Julian From owner-freebsd-testing@FreeBSD.ORG Thu Jan 29 19:14:42 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50587165; Thu, 29 Jan 2015 19:14:42 +0000 (UTC) Received: from mail-ie0-x234.google.com (mail-ie0-x234.google.com [IPv6:2607:f8b0:4001:c03::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 10DFD9F8; Thu, 29 Jan 2015 19:14:42 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id rl12so37732605iec.11; Thu, 29 Jan 2015 11:14:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=RItBiq88UsfK/fMUSdygwHVN+XVZkPm88gr9WGb5aRA=; b=fGaskR60Hlu3hBCmej3CFDStLWt8FIHMLBBfyW3MAf1jUUW8rMXgSJXJSVIvopOnm0 45gxGAUjNlpexM5ndL7Ekr5XVQ1wTBGKujdVli9N+6GdRf6xkO3gtsfRemh3+5LJLDBx XYiMPizH1xH8wo59ZBAR+pqniwSVnTlNHe6FgR6QfFkIyNIeX5S0VmtrOkI2HfzmpPyV cDvtn/ca5nJPM3utFLzarNL48CSbhY7VXelaF0cEZVPcOtrZGtkvsOmylUwQJ3sjQ+JZ 8fa28dwFki6iKfx447EDRybrSivmddpij0/IhxyG5RoC3VEAPiU0TSIfaYtTWNonX647 9aKA== MIME-Version: 1.0 X-Received: by 10.50.66.131 with SMTP id f3mr2132506igt.7.1422558881459; Thu, 29 Jan 2015 11:14:41 -0800 (PST) Received: by 10.50.182.233 with HTTP; Thu, 29 Jan 2015 11:14:41 -0800 (PST) In-Reply-To: <20150129171841.GA23484@sol.firepipe.net> References: <201501291423.t0TENWOO048247@svn.freebsd.org> <2519DB92-D2AD-48BD-96AE-101168E9C163@gmail.com> <20150129171841.GA23484@sol.firepipe.net> Date: Thu, 29 Jan 2015 11:14:41 -0800 Message-ID: Subject: Re: svn commit: r277876 - in projects/zfsd/head/tests/sys/cddl/zfs/tests: cli_root/zpool_upgrade zil From: NGie Cooper To: Will Andrews Content-Type: text/plain; charset=UTF-8 Cc: "svn-src-projects@freebsd.org" , "freebsd-testing@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jan 2015 19:14:42 -0000 On Thu, Jan 29, 2015 at 9:18 AM, Will Andrews wrote: > On Thu, Jan 29, 2015 at 08:58:57AM -0800, Garrett Cooper wrote: >> Please use atf_skip instead of atf_fail so the issues don't count >> as failures. If you have bug numbers for the issues that would be nice >> too in the error messages. > > To me, skipping tests is only done when the environment is not setup > correctly for the test. > > Panics are a special case in that they cause an irreversible abort of the > test run itself, and they *are* failures. > > We've adopted a practice of marking such tests as 'expected failure' and > then preemptively failing them. Does that work for you? I agree in concept. The only way to really do this in ATF is a two-step: atf_expect_fail "This test panics my box" atf_fail "Panic!" This will print out a message like "expected failure: This test panics my box: Panic!" though in the results, which is incredibly confusing... That's why Julio, NetBSD, me, and others prefer: atf_skip "This test panics my box" A "filtering" mechanism for dealing with broken/failing tests on FreeBSD hasn't been developed (and it kinds of invites maintenance pain as it numbs people to issues in tests). So while the atf_fail is known and expected for SpectraLogic, it's not for the Jenkins folks, Isilon, Microsoft, Netflix, Panzura, etc. > Bugs will come later if I don't have fixes I can commit. Bugging the symptoms sooner rather than later is better so others know what commands to avoid entering in (or situations to avoid in general) when dealing with code. Please, please bug them so others don't accidentally trip themselves up on the issues you've seen. PS Thank you again for the work that you, Alan, and the other folks at SpectraLogic have done! It'll be nice to add some intelligence to FreeBSD/ZFS with zfsd :). From owner-freebsd-testing@FreeBSD.ORG Thu Jan 29 19:41:21 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D8F7E07 for ; Thu, 29 Jan 2015 19:41:21 +0000 (UTC) Received: from mail-ie0-f171.google.com (mail-ie0-f171.google.com [209.85.223.171]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0723DE4E for ; Thu, 29 Jan 2015 19:41:20 +0000 (UTC) Received: by mail-ie0-f171.google.com with SMTP id tr6so38109546ieb.2 for ; Thu, 29 Jan 2015 11:41:20 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=QlNMwXN5q4Rn04F7Aqij02WFui8IPJadZjyqg+6BJWI=; b=Li2ma8sv9Q8wGZeNOyid1lpOr6dR2One3sVf6Z309s2Dtx5ai18FAGTnVPFHuMlLpG 71LyXVsJOz/ZgxPp7s05fWTXODweY5lS1kPAG935jYxRbzmER5JOShDhjx3tyC139/Ad Qksu30nj2+2XMAuS3FcggY4JsPD1QmJDXJvMme8eV12s4jOOWPhy+behH8uQf6al0EOP W9tRDleGl60PLaghURV2OpFDR6TzZeE/bTYkQ//d3sCjDlvcpARis2RHDS77vCGQ779w 9L8iZ+jzNDvBoBhgMsXk/C2cwoHXkmVk7t59DlsMDJTRAv0+dokOVdamMNxN9z2FoKlF mrJQ== X-Gm-Message-State: ALoCoQlZbupp9lvYi4W9aS0iqURiUYN3ZQxX7TF5egDX3ZwSReMtlGl9pap5H6K4t1fBONaND9oI X-Received: by 10.42.121.84 with SMTP id i20mr2477619icr.20.1422560479935; Thu, 29 Jan 2015 11:41:19 -0800 (PST) Received: from sol.firepipe.net ([2601:1:ad80:db8:7271:bcff:fe83:9550]) by mx.google.com with ESMTPSA id c70sm2913717ioc.3.2015.01.29.11.41.18 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 29 Jan 2015 11:41:19 -0800 (PST) Sender: Will Andrews Date: Thu, 29 Jan 2015 12:41:17 -0700 From: Will Andrews To: NGie Cooper Subject: Re: svn commit: r277876 - in projects/zfsd/head/tests/sys/cddl/zfs/tests: cli_root/zpool_upgrade zil Message-ID: <20150129194111.GD23484@sol.firepipe.net> References: <201501291423.t0TENWOO048247@svn.freebsd.org> <2519DB92-D2AD-48BD-96AE-101168E9C163@gmail.com> <20150129171841.GA23484@sol.firepipe.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="osDK9TLjxFScVI/L" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Cc: "svn-src-projects@freebsd.org" , "freebsd-testing@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jan 2015 19:41:21 -0000 --osDK9TLjxFScVI/L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 29, 2015 at 11:14:41AM -0800, NGie Cooper wrote: > I agree in concept. The only way to really do this in ATF is a two-step: >=20 > atf_expect_fail "This test panics my box" > atf_fail "Panic!" >=20 > This will print out a message like "expected failure: This test panics > my box: Panic!" though in the results, which is incredibly > confusing... That's why Julio, NetBSD, me, and others prefer: >=20 > atf_skip "This test panics my box" >=20 > A "filtering" mechanism for dealing with broken/failing tests on > FreeBSD hasn't been developed (and it kinds of invites maintenance > pain as it numbs people to issues in tests). So while the atf_fail is > known and expected for SpectraLogic, it's not for the Jenkins folks, > Isilon, Microsoft, Netflix, Panzura, etc. I suspect that marking the tests skipped means they will be ignored more so than marking them as expected failures. It is inefficient to manually filter a (potentially very long) skipped list to determine which ones are actually failures and which ones are simply because the environment isn't set up for them or because they require functions not yet ported to FreeBSD. In the ZFS test suite, ~150 are skipped out of ~800 total. So, how do you (quickly) tell which ones are actually failures? > Bugging the symptoms sooner rather than later is better so others know > what commands to avoid entering in (or situations to avoid in general) > when dealing with code. Please, please bug them so others don't > accidentally trip themselves up on the issues you've seen. I understand that, but first I'm trying to get the test suite to run. As I said in reply to Steven, all of these failures will be investigated once I have an easily repeatable mechanism, and before merging to head. > PS Thank you again for the work that you, Alan, and the other folks at > SpectraLogic have done! It'll be nice to add some intelligence to > FreeBSD/ZFS with zfsd :). Appreciated. zfsd won't be included in the initial test suite import, unfortunately. There are unfinished KPI changes that zfsd depends on in order to do its job. However, the vast majority of the ZFS test suite does not depend on zfsd, and we've seen many regressions over the last few years that would have been caught if this suite were being run. --=20 wca --osDK9TLjxFScVI/L Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlTKjNYACgkQF47idPgWcsX+CACfaNzcAQ1rL1z56fg8BUPLKfcM RYoAoI3yf8jZOBR4C1Ouv+LBu5AcQHeZ =7IAm -----END PGP SIGNATURE----- --osDK9TLjxFScVI/L-- From owner-freebsd-testing@FreeBSD.ORG Sat Jan 31 21:35:28 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E061D6F; Sat, 31 Jan 2015 21:35:28 +0000 (UTC) Received: from mail-la0-x22f.google.com (mail-la0-x22f.google.com [IPv6:2a00:1450:4010:c03::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1A2B6DA4; Sat, 31 Jan 2015 21:35:28 +0000 (UTC) Received: by mail-la0-f47.google.com with SMTP id hz20so30660320lab.6; Sat, 31 Jan 2015 13:35:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=kCFKUYavYEF4P1+yXSgpeavITtx22KkBsuf9E4ysRVE=; b=tbem/o9QrYsR3c1zz8nx0nx0nbHThFHTq3per/1+YQtjrOARx6gbleFc1PgVPEWatE Aq3RAazjZndZGWCQ7vbRXFQ/PthZD17phOemayIadTlwP7MS0dRaL8A+4BCWal33snHF +iOIStTMG2XhtC91sBHdHcymrpsaHH/0TY5EWTzS2Brmn3Qh5im43m+Ky0fMcI7rYaFZ 7dwiba5ogSl6mpmuZ7NjpLANHYrxzaiowKHceYtyVt0sPaw9DG1BPNMGEVcIThsJuifJ GB13WE8XEfE2IIdlSRXXr6Gah5mGfvKM1nxJvc0pDVwVpOCDeziPG22zuMEL8KOU/S+B PKaA== MIME-Version: 1.0 X-Received: by 10.152.5.72 with SMTP id q8mr12176308laq.57.1422740125197; Sat, 31 Jan 2015 13:35:25 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.28.40 with HTTP; Sat, 31 Jan 2015 13:35:25 -0800 (PST) In-Reply-To: <54C8A777.3060201@freebsd.org> References: <54C8A777.3060201@freebsd.org> Date: Sat, 31 Jan 2015 13:35:25 -0800 X-Google-Sender-Auth: _E82_RK4OtdZBlCYYKEXUOQCHWg Message-ID: Subject: Re: jenkins and stable-10-gcc From: Craig Rodrigues To: Julian Elischer Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "freebsd-testing@freebsd.org" X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jan 2015 21:35:28 -0000 On Wed, Jan 28, 2015 at 1:10 AM, Julian Elischer wrote: > Hi I hope I've come to the right place.. > > Gcc is supposed to be still supported in 10, but I have seen several > breakages with 10 some of which have lasted some time. > It would be good to have a jenkins gcc compile of 10-stable to catch > these. Doesn't need to 'run' but compiling would be nice. > > (we are stuck with gcc for a while at work) > > Julian > Hi, We have a sparc64 build on HEAD which compiles the tree with gcc 4.2.1, but not on stable/10. We can introduce new builds, but we also need to get more resources from clusteradm. We have this pending request to clusteradm to reallocate machines allocated to Julio Merino for kyua testing for Jenkins builds/testing: https://admbugs.freebsd.org/show_bug.cgi?id=602 -- Craig -- Craig