From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 05:16:10 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55F865B8; Sun, 15 Feb 2015 05:16:10 +0000 (UTC) Received: from mail-wi0-x235.google.com (mail-wi0-x235.google.com [IPv6:2a00:1450:400c:c05::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E93FC95F; Sun, 15 Feb 2015 05:16:09 +0000 (UTC) Received: by mail-wi0-f181.google.com with SMTP id r20so19952999wiv.2; Sat, 14 Feb 2015 21:16:07 -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=0ejEXGSPf5d/ucYlROY/wdSZf3FGGr4EfHepMHLfxjc=; b=iRr8o56kq8CxFdd7EKUlWxNMsw0lYeX+s5rJDQjJghCi2Qhqus8ke3QVlRddZ2WpBb yeHZ0cCl89fQPYhOjZ4HdY63yVTlFUPK8f4SG2vjrx78df2xN5T2a0CzSegTO5QLRV8Q vL6SmeswvobJqvA3APJJPfOi3ivYSuFH8KzWnKoddhYNaBrp7TaQw0dWeOxIvPAODU+Y laywgWK99wx2abW2wr3A1KbguzaMFfkLW5Qd7eZZEUiozmu4AxBYem17KN2Bavlsj7hb 8MDwLPfLxG2pgoWXyehq9VChGyBJuljg413QfJiL+VokELO2I8HVlxYIh9PTmrZSgBl5 u10g== MIME-Version: 1.0 X-Received: by 10.195.13.197 with SMTP id fa5mr37422845wjd.41.1423977367793; Sat, 14 Feb 2015 21:16:07 -0800 (PST) Sender: asomers@gmail.com Received: by 10.194.17.129 with HTTP; Sat, 14 Feb 2015 21:16:07 -0800 (PST) In-Reply-To: <20150214215750.GA5065@rodrigc-laptop1> References: <20150214215750.GA5065@rodrigc-laptop1> Date: Sat, 14 Feb 2015 22:16:07 -0700 X-Google-Sender-Auth: c2lF3OOLot0irsdCm1ghquwa6Vg Message-ID: Subject: Re: Python unittest backend for Kyua From: Alan Somers To: Craig Rodrigues Content-Type: text/plain; charset=UTF-8 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: Sun, 15 Feb 2015 05:16:10 -0000 On Sat, Feb 14, 2015 at 2:57 PM, Craig Rodrigues wrote: > On Tue, Nov 26, 2013 at 09:47:29PM -0700, Alan Somers wrote: >> I wrote a Kyua backend for Python programs that use the unittest >> module from the standard library. It's incomplete (no man page, no >> tests, no test case isolation, and no tested version of python other >> than 2.7), but I'm posting it to discuss the approach. Do you think >> it's a good start? >> >> Rather than use unittest's CLI, I wrote the backend to dynamically >> load the file under test and interrogate the test using unittest as a >> library. This allowed more intimate access. For example, the >> unittest CLI doesn't have a "list" command, but the backend can still >> list tests. >> >> Does it look good so far? >> >> -Alan > > Alan, > > I saw this post of yours from a while back. > I was just wondering, how far did you get with it? Do you use > it in your company? Not much further than when I made that post, and no. In fact, I hardly use Python at all. Professionally, my company is all about Ruby, and I would be very interested in a Ruby test/unit tester for Kyua. However, Ruby's test/unit's implementation is much messier than Python's unittest, so I thought that writing a unittest tester would be good practice for writing a test/unit tester. Indeed it was. I found unittest very easy to interface to; it hardly took me any time to write that tester. But in the end I stopped working on it because jmmv and I disagreed about test isolation. Jmmv's primary interest is in writing system-level tests. He basically sees a unittest tester as an alternative to atf-sh. But my primary interest is in tying together separate components' test suites and get a consistent view of all results. So naturally jmmv wants the same level of isolation as atf-sh provides, but I want the same level of isolation as unittest provides. In fact, atf-sh style isolation is bad for my use case, because it can cause tests that were originally written for unittest to fail. It also drastically increases runtime because the Python interpreter must be restarted between each test. > > I looked at three Python testing frameworks: > (1) unittest https://docs.python.org/2/library/unittest.html > (2) nose https://nose.readthedocs.org > (3) pytest http://pytest.org > > I found that pytest was the easiest to set up and did what I needed: > -> test discovery > -> generate XML test result output compatible with Jenkins The way I wrote my bindings, this is a non-issue. With my tester, kyua itself is still responsible for producing the reports. > -> tests do not need to inherit from any base classes, > and just requires a file with "test_*" methods > > The test discovery makes it somewhat "kyua-like". > > > Do you have any opions/experience with this? I've never used nose or pytest. Personally, I'm a little leery of test discovery, because it's contrary to how Kyua normally works. Normally, you have to explicitly specify each test file in the Kyuafile (or the makefile that builds the Kyuafile). Having some tests be automatically discovered and others specified in Kyuafiles might be confusing. I'm leaning against automatic discovery. But I could be convinced otherwise. In the case of Ruby, all of our tests are executed through Rake. So my preferred method would be to add a Rake task that would generate the appropriate Kyuafile. > > My experience is that running the FreeBSD tests in kyua work great. > However, for a full product, I've had a really hard time getting > QA people to be able to get comfortable writing new ATF tests and Kyuafiles. > I've had less problems withe the Python frameworks. My main advice is to think about whether you really want to write tests using an existing framework, or whether by the time you finish Kyua-ifying it won't really be the same framework anymore. I think that there's space for both. What my experience taught me is that one interface can't satisfy both needs. -Alan > > -- > Craig From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 17:05:14 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73C9E15D for ; Sun, 15 Feb 2015 17:05:14 +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 5A31CE29 for ; Sun, 15 Feb 2015 17:05:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1FH5Elg061882 for ; Sun, 15 Feb 2015 17:05:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197612] usr.sbin.pw.pw_usernext:usernext* tests are broken (but pass sometimes...?) Date: Sun, 15 Feb 2015 17:05:14 +0000 X-Bugzilla-Reason: AssignedTo 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: oneil.rs@gmail.com X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created 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, 15 Feb 2015 17:05:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197612 --- Comment #4 from oneil.rs@gmail.com --- Created attachment 153007 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153007&action=edit The random limit was going out of bounds of the test. The random limit is now in bounds and should not fail. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 18:23:50 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EBB0B69; Sun, 15 Feb 2015 18:23:50 +0000 (UTC) Received: from mail-la0-f45.google.com (mail-la0-f45.google.com [209.85.215.45]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0BC686DE; Sun, 15 Feb 2015 18:23:49 +0000 (UTC) Received: by labpv20 with SMTP id pv20so24475707lab.8; Sun, 15 Feb 2015 10:23:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:cc:content-type; bh=b5lGMSrBcnUQEEe5Gz0V3IukenlshrMQ1cjmBEVJUVI=; b=AGvyfx/uIUuOak2FR63F7wOsgZJjh4Xqqev0EJe4qJJ0wA+kytNGQyUWMNorIH3YeR h6Vw5LaLI4BqbQz3wo9jOLp+CSl8POeaFhmKNG5OCu1SlNd1fuB0/P6I5nAHtqe0RbQv EPOUqOUfiX0vzwP9wItjovD49WzOtAwbCQMUgRdpEoblU5ZoowzjGBn2HSQNswO1dbEP SWF51hs99cc4e9hUNLk3h5qjVYZfCnx3uorLgiemnTKtDGZehQhFG56YUCXD3MktBMJk xc0W2efA7A+tPYNYlGH71BlN2zLbudci1698jQy46h1IxsIWELQXDNhNY8deWRoH5o8c ldIg== MIME-Version: 1.0 X-Received: by 10.152.26.199 with SMTP id n7mr18068559lag.29.1424024622196; Sun, 15 Feb 2015 10:23:42 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.28.40 with HTTP; Sun, 15 Feb 2015 10:23:42 -0800 (PST) Date: Sun, 15 Feb 2015 10:23:42 -0800 X-Google-Sender-Auth: HD1H3AR-98HrNsMz4nkxWkY_p4s Message-ID: Subject: Building Kyua inside qemu mips VM From: Craig Rodrigues To: Adrian Chadd 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: Sun, 15 Feb 2015 18:23:50 -0000 Adrian, I am continuing on the work started in the Hackathon which you organized in January. I have this Jenkins job which builds a UFS image built for mips using the MALTA kernel config: https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ I am using this invocation of QEMU to boot the image with 256MB RAM: https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU I am now trying to build /usr/ports/devel/kyua inside the VM, so that I can do "cd /usr/tests ; kyua test" to run all the tests. However, building kyua and all its dependencies (atf, sqlite, lua, lutok) is taking a really long time inside this VM, on the order of many hours. Is there something I can do to boost performance so I can at least build kyua faster in this VM? -- Craig From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 18:26:53 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED211B94; Sun, 15 Feb 2015 18:26:53 +0000 (UTC) Received: from mail-ie0-f181.google.com (mail-ie0-f181.google.com [209.85.223.181]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCCCD6EA; Sun, 15 Feb 2015 18:26:53 +0000 (UTC) Received: by iecrd18 with SMTP id rd18so29778341iec.5; Sun, 15 Feb 2015 10:26:46 -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=Jn6IUhDFHmAJFkVsPiC0Rhcx/VjzAXYa1OSXWSYCKfU=; b=WvV1ZJn6C6bZld0I1ZmCFqZiE6Qg8x67cY6JWBmXqjJ4y80uVcteMb/2owUS0lVIcA 72k3uDB4diAtCa4iErcsH2XttFiiZwpk4BKhApcYOcBgcW2ar5MKeIwhiI899DM/dJur d9pQqj6qG4SvksfBof2WHx0dxiA+ybEDpP02P4Tmp8CvihkXA1+3o189QBrfEQiSvELa MrE2AvvnX3pSwqX/Z9d22tvIzIdsK7+DAWCyCmlchkaor3B8ui22bveI9I5IVAYTr1be YzEkK9cVhTDwBLwNGSKmAiUaYbID2d/VTVJea1glj/xXPPTx0jzl1FCNtDzeUpu05aGL oTVg== MIME-Version: 1.0 X-Received: by 10.50.79.135 with SMTP id j7mr17107109igx.32.1424024806868; Sun, 15 Feb 2015 10:26:46 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.36.17.66 with HTTP; Sun, 15 Feb 2015 10:26:46 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 10:26:46 -0800 X-Google-Sender-Auth: HFmYfLkRIQGAoDoOn2EHTO-F26c Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Adrian Chadd To: Craig Rodrigues Content-Type: text/plain; charset=UTF-8 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: Sun, 15 Feb 2015 18:26:54 -0000 ... ask the ports people to support cross-building as a "thing" one can do? All of those ports you've mentioned should be a perfectly good target for cross-building; I've done them before individually. -adrian On 15 February 2015 at 10:23, Craig Rodrigues wrote: > Adrian, > > I am continuing on the work started in the Hackathon which > you organized in January. I have this Jenkins job which > builds a UFS image built for mips using the MALTA kernel config: > > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ > > I am using this invocation of QEMU to boot the image with 256MB RAM: > > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU > > I am now trying to build /usr/ports/devel/kyua > inside the VM, so that I can do "cd /usr/tests ; kyua test" to run > all the tests. > > However, building kyua and all its dependencies (atf, sqlite, lua, lutok) > is taking a really long time inside this VM, on the order of many hours. > > Is there something I can do to boost performance so I can at least build > kyua faster in this VM? > > -- > Craig From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 18:51:29 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 305A6EAA; Sun, 15 Feb 2015 18:51:29 +0000 (UTC) Received: from mail-la0-f48.google.com (mail-la0-f48.google.com [209.85.215.48]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C057392B; Sun, 15 Feb 2015 18:51:28 +0000 (UTC) Received: by labms9 with SMTP id ms9so18823600lab.10; Sun, 15 Feb 2015 10:51:21 -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=Wq2VFjrsQR5WMjbGyIF0SMQN1Bnj2fgtfhjSuVpEXSU=; b=C2xi9eBlJhn0l188rcDppsCxVV8xPtybof3kXdVdPT7I60XkJ+4alm0+ctLqU5XyWI l9lw2+CUEwWXXUiAEiXQKUynQzA57tYejU2/WWR0aL0641esMf0hCuwCkU0sQ4rPfjLX fwt7PLpDv+IGjNjANLbCHUVUkbWX0Vdxxb9SQjpSQj2ENLUwSa/nkF0Tj7u0oFPAfwYO wqYx4ph8m/ebbusus9c6OHap8T+dAqMpvRGMDqcLpGM/z2W8Dfrd3LGW96a5ZvsQI8ZX XUHEa2cT+iZ62zMiU2xa65fSkBC3HOupJZPYr1z1rXipBUz9ju2b9r/NSvM+o/75j/LY p6nQ== MIME-Version: 1.0 X-Received: by 10.152.5.6 with SMTP id o6mr18545898lao.59.1424026281372; Sun, 15 Feb 2015 10:51:21 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.28.40 with HTTP; Sun, 15 Feb 2015 10:51:21 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 10:51:21 -0800 X-Google-Sender-Auth: DDp3ED3LXo5vaubjVddvQoMGLNY Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Craig Rodrigues To: Adrian Chadd 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: Sun, 15 Feb 2015 18:51:29 -0000 Hi, Have you tried any of these options to cross-build ports: https://wiki.freebsd.org/QemuUserModeHowTo Those options look complicated, but workable. -- Craig On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd wrote: > ... ask the ports people to support cross-building as a "thing" one can do? > > All of those ports you've mentioned should be a perfectly good target > for cross-building; I've done them before individually. > > > > -adrian > > > On 15 February 2015 at 10:23, Craig Rodrigues wrote: > > Adrian, > > > > I am continuing on the work started in the Hackathon which > > you organized in January. I have this Jenkins job which > > builds a UFS image built for mips using the MALTA kernel config: > > > > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ > > > > I am using this invocation of QEMU to boot the image with 256MB RAM: > > > > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU > > > > I am now trying to build /usr/ports/devel/kyua > > inside the VM, so that I can do "cd /usr/tests ; kyua test" to run > > all the tests. > > > > However, building kyua and all its dependencies (atf, sqlite, lua, lutok) > > is taking a really long time inside this VM, on the order of many hours. > > > > Is there something I can do to boost performance so I can at least build > > kyua faster in this VM? > > > > -- > > Craig > From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 18:55:36 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB0A27E; Sun, 15 Feb 2015 18:55:36 +0000 (UTC) Received: from mail-ig0-x229.google.com (mail-ig0-x229.google.com [IPv6:2607:f8b0:4001:c05::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6F2A39CE; Sun, 15 Feb 2015 18:55:36 +0000 (UTC) Received: by mail-ig0-f169.google.com with SMTP id hl2so28362344igb.0; Sun, 15 Feb 2015 10:55:35 -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=QaswNKkaBAqtE8KJSPCudgm75ItEw9JAygRG6frhhHw=; b=0RWdzaPid7v3MzA5nxc5CKMMeZA2FgAwVClxQTjabUs2W1+0JwY5PIN+Jsdb5fWhfE KsCUP1j6L4KxWGAPbX1WcR1BezQh7ZovxANksmyI9U+fExcUMDuELh9dmMaJugpKP5fV j5L+qP35c+59CiBW5AdOAqGRr/w6DNCeADXtaozz9NZbGZtJpOVasUu+TzjL9XcAtcG2 cqZzO5V/F0daNd9ruEr4N2zudEIaYhVj/L8a9BG+vb7pDk7/ouQx7TVhtD/77J+DIgnW /vjxd2RTkLWCrksJQMuj3Bb5sxs9BmM98zxsFO/a5jsiF84M15Py0IdAJGOx+OXaYN3A Gt6g== MIME-Version: 1.0 X-Received: by 10.42.201.78 with SMTP id ez14mr25836999icb.22.1424026535858; Sun, 15 Feb 2015 10:55:35 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.36.17.66 with HTTP; Sun, 15 Feb 2015 10:55:35 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 10:55:35 -0800 X-Google-Sender-Auth: y6V93q47CZXxpm4H2wUK7nLghuA Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Adrian Chadd To: Craig Rodrigues Content-Type: text/plain; charset=UTF-8 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: Sun, 15 Feb 2015 18:55:36 -0000 I haven't tried it, because sean does a good job wrangling those yak herds. I'd rather we actually had proper cross-building without these kinds of hacks, and having more people with an actual requirement voicing this would be nice. -adrian On 15 February 2015 at 10:51, Craig Rodrigues wrote: > Hi, > > Have you tried any of these options to cross-build ports: > > https://wiki.freebsd.org/QemuUserModeHowTo > > Those options look complicated, but workable. > -- > Craig > > > On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd wrote: >> >> ... ask the ports people to support cross-building as a "thing" one can >> do? >> >> All of those ports you've mentioned should be a perfectly good target >> for cross-building; I've done them before individually. >> >> >> >> -adrian >> >> >> On 15 February 2015 at 10:23, Craig Rodrigues wrote: >> > Adrian, >> > >> > I am continuing on the work started in the Hackathon which >> > you organized in January. I have this Jenkins job which >> > builds a UFS image built for mips using the MALTA kernel config: >> > >> > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ >> > >> > I am using this invocation of QEMU to boot the image with 256MB RAM: >> > >> > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU >> > >> > I am now trying to build /usr/ports/devel/kyua >> > inside the VM, so that I can do "cd /usr/tests ; kyua test" to run >> > all the tests. >> > >> > However, building kyua and all its dependencies (atf, sqlite, lua, >> > lutok) >> > is taking a really long time inside this VM, on the order of many hours. >> > >> > Is there something I can do to boost performance so I can at least build >> > kyua faster in this VM? >> > >> > -- >> > Craig > > From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 18:55:55 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E69BA6; Sun, 15 Feb 2015 18:55:55 +0000 (UTC) Received: from mail-lb0-x22f.google.com (mail-lb0-x22f.google.com [IPv6:2a00:1450:4010:c04::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C20DF9CF; Sun, 15 Feb 2015 18:55:54 +0000 (UTC) Received: by mail-lb0-f175.google.com with SMTP id n10so23589258lbv.6; Sun, 15 Feb 2015 10:55:52 -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=6umKTjGym2r9AKKzIRseH1onWaqbclVxKvB/RsoTAXM=; b=yGWUfIOZPQmrP64KuHaTbilAHUlcNExvDXSdQAdI9GAFc1+v+aB77RtQhqDPh9vj1C IaaN7t9VFOpVwuR7bpB8lwFlOzvdqUj5NpmR9ZIC4VePt2i6Aov5eUYZy9vIJWQQy+1h Um0FIxmbQhxZe8vCXXH2zUgu72hUh+A8W8uDnTg8XGCmW4hliWiKXD3vegBnGQjEJFvk gzNrJfLLOo4ZtPBwCGApnAzMn5778OZhVWRaBfYlXBtCS6DsvAjcPHeVkbJ0mSLxG/m9 BRMOvQpjkPD9u/Li3OVExn/jhTQ+3oZFfZs1tO4AkB8ajggGuRLjpOkjCVWdkhqWcB7L pZBQ== MIME-Version: 1.0 X-Received: by 10.112.181.165 with SMTP id dx5mr18264129lbc.89.1424026552732; Sun, 15 Feb 2015 10:55:52 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.28.40 with HTTP; Sun, 15 Feb 2015 10:55:52 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 10:55:52 -0800 X-Google-Sender-Auth: 1SARZULaAnTxXmH2dPwUMFoJDLM Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Craig Rodrigues To: Adrian Chadd 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: Sun, 15 Feb 2015 18:55:55 -0000 Also, can the MALTA kernel config support any network drivers compatible with QEMU? I didn't see anything compiled into the default kernel config, but I might have missed it. -- Craig On Sun, Feb 15, 2015 at 10:51 AM, Craig Rodrigues wrote: > Hi, > > Have you tried any of these options to cross-build ports: > > https://wiki.freebsd.org/QemuUserModeHowTo > > Those options look complicated, but workable. > -- > Craig > > > On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd wrote: > >> ... ask the ports people to support cross-building as a "thing" one can >> do? >> >> All of those ports you've mentioned should be a perfectly good target >> for cross-building; I've done them before individually. >> >> >> >> -adrian >> >> >> On 15 February 2015 at 10:23, Craig Rodrigues >> wrote: >> > Adrian, >> > >> > I am continuing on the work started in the Hackathon which >> > you organized in January. I have this Jenkins job which >> > builds a UFS image built for mips using the MALTA kernel config: >> > >> > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ >> > >> > I am using this invocation of QEMU to boot the image with 256MB RAM: >> > >> > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU >> > >> > I am now trying to build /usr/ports/devel/kyua >> > inside the VM, so that I can do "cd /usr/tests ; kyua test" to run >> > all the tests. >> > >> > However, building kyua and all its dependencies (atf, sqlite, lua, >> lutok) >> > is taking a really long time inside this VM, on the order of many hours. >> > >> > Is there something I can do to boost performance so I can at least build >> > kyua faster in this VM? >> > >> > -- >> > Craig >> > > From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 19:03:35 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E1994AB; Sun, 15 Feb 2015 19:03:35 +0000 (UTC) Received: from mail-ig0-x22b.google.com (mail-ig0-x22b.google.com [IPv6:2607:f8b0:4001:c05::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 60BFCAA0; Sun, 15 Feb 2015 19:03:35 +0000 (UTC) Received: by mail-ig0-f171.google.com with SMTP id h15so19824682igd.4; Sun, 15 Feb 2015 11:03:34 -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=k26YjeFGPcNznEOXm08PJrap/Saxhn3L72NVDYnqhw8=; b=zYeK7bAcGcBVHwYbs16fR21Cr537RweIjNYYMxIAqqIwhaJR2LK7h+xUoYzyUGNg0t X6DIY2Iromhhb9jrC0UqUGR5ybrIpMfrk0+WK8jTJCf66IWSHJKvjXuFRwnBWCTLYxy3 DsTq3COJ2W900+fhJtb6YMzFcrAaAg4aQ2GdiY1rfYLKMRjgMVk7TQCWMZGp9J6/bcMm 6VywcmzZYCaxlwShYI8R67Z8IjYOi0KRFIY6zpDXC6FHTT3RvUbvFQHr6xW9owKS+vn5 KTGP9/Xw0IvoCmR0RDVQNCDtYx1tRHIkKcXZPUt4XZjbtTjheXAzjP2JBhrr/Muj0/SN FKhg== MIME-Version: 1.0 X-Received: by 10.42.201.78 with SMTP id ez14mr25860594icb.22.1424027014729; Sun, 15 Feb 2015 11:03:34 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.36.17.66 with HTTP; Sun, 15 Feb 2015 11:03:34 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 11:03:34 -0800 X-Google-Sender-Auth: Tw-W9kIrDHV_OIPHlpEI2hLI4hU Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Adrian Chadd To: Craig Rodrigues Content-Type: text/plain; charset=UTF-8 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: Sun, 15 Feb 2015 19:03:35 -0000 Yeah, it does: le0: irq 10 at device 11.0 on pci0 le0: Lazy allocation of 0x20 bytes rid 0x10 type 4 at 0x120 le0: 16 receive buffers, 4 transmit buffers le0: bpf attached le0: Ethernet address: 52:54:00:12:34:56 (I'm doing a buildworld right now inside it.) -adrian On 15 February 2015 at 10:55, Craig Rodrigues wrote: > Also, can the MALTA kernel config support any network drivers compatible > with QEMU? > I didn't see anything compiled into the default kernel config, but I might > have missed it. > > -- > Craig > > On Sun, Feb 15, 2015 at 10:51 AM, Craig Rodrigues > wrote: >> >> Hi, >> >> Have you tried any of these options to cross-build ports: >> >> https://wiki.freebsd.org/QemuUserModeHowTo >> >> Those options look complicated, but workable. >> -- >> Craig >> >> >> On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd wrote: >>> >>> ... ask the ports people to support cross-building as a "thing" one can >>> do? >>> >>> All of those ports you've mentioned should be a perfectly good target >>> for cross-building; I've done them before individually. >>> >>> >>> >>> -adrian >>> >>> >>> On 15 February 2015 at 10:23, Craig Rodrigues >>> wrote: >>> > Adrian, >>> > >>> > I am continuing on the work started in the Hackathon which >>> > you organized in January. I have this Jenkins job which >>> > builds a UFS image built for mips using the MALTA kernel config: >>> > >>> > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ >>> > >>> > I am using this invocation of QEMU to boot the image with 256MB RAM: >>> > >>> > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU >>> > >>> > I am now trying to build /usr/ports/devel/kyua >>> > inside the VM, so that I can do "cd /usr/tests ; kyua test" to run >>> > all the tests. >>> > >>> > However, building kyua and all its dependencies (atf, sqlite, lua, >>> > lutok) >>> > is taking a really long time inside this VM, on the order of many >>> > hours. >>> > >>> > Is there something I can do to boost performance so I can at least >>> > build >>> > kyua faster in this VM? >>> > >>> > -- >>> > Craig >> >> > From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 19:04:06 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 346F44C4 for ; Sun, 15 Feb 2015 19:04:06 +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 1A664AA1 for ; Sun, 15 Feb 2015 19:04:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1FJ45mi071412 for ; Sun, 15 Feb 2015 19:04:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197612] usr.sbin.pw.pw_usernext:usernext* tests are broken (but pass sometimes...?) Date: Sun, 15 Feb 2015 19:04:06 +0000 X-Bugzilla-Reason: AssignedTo 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: freebsd-testing@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, 15 Feb 2015 19:04:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197612 --- Comment #5 from Garrett Cooper,425-314-3911 --- (In reply to oneil.rs from comment #4) Would this correspond to this failure (from https://jenkins.freebsd.org/job/FreeBSD_HEAD-tests2/702/testReport/junit/usr.sbin.pw/pw_usernext/usernext/ )? Fail: regexp 10010:10010 not in stdout 1010:1010 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 19:04:39 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 BFC6C4E7 for ; Sun, 15 Feb 2015 19:04:39 +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 A5E2EAA7 for ; Sun, 15 Feb 2015 19:04:39 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1FJ4dZR071673 for ; Sun, 15 Feb 2015 19:04:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197612] usr.sbin.pw.pw_usernext:usernext* tests are broken (but pass sometimes...?) Date: Sun, 15 Feb 2015 19:04:39 +0000 X-Bugzilla-Reason: AssignedTo 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: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status 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, 15 Feb 2015 19:04:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197612 Garrett Cooper,425-314-3911 changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |--- Status|Closed |Open --- Comment #6 from Garrett Cooper,425-314-3911 --- Reopening because the testcases still fail sporadically -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 19:08:37 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 481CC546; Sun, 15 Feb 2015 19:08:37 +0000 (UTC) Received: from mail-lb0-x233.google.com (mail-lb0-x233.google.com [IPv6:2a00:1450:4010:c04::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B9010AC5; Sun, 15 Feb 2015 19:08:36 +0000 (UTC) Received: by mail-lb0-f179.google.com with SMTP id w7so23659569lbi.10; Sun, 15 Feb 2015 11:08:34 -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=ctHIEDgLIly2hX/nSh7vnSM52jsMfoJWf/n0yFowaW8=; b=OP27Aa19Ri+YxvWOUK1zdig87AFkLiqxUyQWeGQGEqd6wHEeO9a0GTYrr6LOnUIP9J uLQORzHT9nJt7wHmzY5J4RtK+Xwzct7FMo6YHlHhjWqajcPhQmQuZ6laqXNR9Z81MBN5 huDFDv39fj0Ko14q4ae30DUhg6KQXHka+WiQo9RiuyoJwxW76SQ7bRNfpdcoHLmpb6sr /qAV5Jeer8Bj5znMF0GRgT1JWf4FUr27m430tNiZHb3m9InuTMk6p0vmm1jYDQc5+UIy wSooSmCANW8W2qbWGZM27cz0nNRVrN27KITEG7bs2fThdT0e7GCeXKVCF6FCq7m0eA5W CDFg== MIME-Version: 1.0 X-Received: by 10.112.137.38 with SMTP id qf6mr18605507lbb.59.1424027314638; Sun, 15 Feb 2015 11:08:34 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.28.40 with HTTP; Sun, 15 Feb 2015 11:08:34 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 11:08:34 -0800 X-Google-Sender-Auth: ZWdNQO1tCnRTvrFkwlc26T2APbs Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Craig Rodrigues To: Adrian Chadd 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: Sun, 15 Feb 2015 19:08:37 -0000 Can you to https://wiki.freebsd.org/FreeBSD/MipsEmulation the command-line flags to QEMU that allow usage of this NIC? Thanks. On Sun, Feb 15, 2015 at 11:03 AM, Adrian Chadd wrote: > Yeah, it does: > > le0: irq 10 at device 11.0 on pci0 > le0: Lazy allocation of 0x20 bytes rid 0x10 type 4 at 0x120 > le0: 16 receive buffers, 4 transmit buffers > le0: bpf attached > le0: Ethernet address: 52:54:00:12:34:56 > > (I'm doing a buildworld right now inside it.) > > > -adrian > > > On 15 February 2015 at 10:55, Craig Rodrigues wrote: > > Also, can the MALTA kernel config support any network drivers compatible > > with QEMU? > > I didn't see anything compiled into the default kernel config, but I > might > > have missed it. > > > > -- > > Craig > > > > On Sun, Feb 15, 2015 at 10:51 AM, Craig Rodrigues > > wrote: > >> > >> Hi, > >> > >> Have you tried any of these options to cross-build ports: > >> > >> https://wiki.freebsd.org/QemuUserModeHowTo > >> > >> Those options look complicated, but workable. > >> -- > >> Craig > >> > >> > >> On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd > wrote: > >>> > >>> ... ask the ports people to support cross-building as a "thing" one can > >>> do? > >>> > >>> All of those ports you've mentioned should be a perfectly good target > >>> for cross-building; I've done them before individually. > >>> > >>> > >>> > >>> -adrian > >>> > >>> > >>> On 15 February 2015 at 10:23, Craig Rodrigues > >>> wrote: > >>> > Adrian, > >>> > > >>> > I am continuing on the work started in the Hackathon which > >>> > you organized in January. I have this Jenkins job which > >>> > builds a UFS image built for mips using the MALTA kernel config: > >>> > > >>> > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ > >>> > > >>> > I am using this invocation of QEMU to boot the image with 256MB RAM: > >>> > > >>> > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU > >>> > > >>> > I am now trying to build /usr/ports/devel/kyua > >>> > inside the VM, so that I can do "cd /usr/tests ; kyua test" to run > >>> > all the tests. > >>> > > >>> > However, building kyua and all its dependencies (atf, sqlite, lua, > >>> > lutok) > >>> > is taking a really long time inside this VM, on the order of many > >>> > hours. > >>> > > >>> > Is there something I can do to boost performance so I can at least > >>> > build > >>> > kyua faster in this VM? > >>> > > >>> > -- > >>> > Craig > >> > >> > > > From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 19:10:11 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E67562C; Sun, 15 Feb 2015 19:10:11 +0000 (UTC) Received: from mail-ig0-x22b.google.com (mail-ig0-x22b.google.com [IPv6:2607:f8b0:4001:c05::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F38C0AD6; Sun, 15 Feb 2015 19:10:10 +0000 (UTC) Received: by mail-ig0-f171.google.com with SMTP id h15so19841506igd.4; Sun, 15 Feb 2015 11:10:10 -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=GIEAh1vGD5QxooXT7+S2xcDhhQkckE1jWe4FH6N+H4g=; b=sWjWAFHcGF/DHnH/l2OxOKu28MIrMdPx2ED04imYvCfPy9qOj/e1osh26WPGkaQKoR D/gCEmRJaGoEkOZejvWmy4SmdC7oKNylIFUTQMwSek969uGkpEi5RSvYZnXN5/+WPFSx iVQteKZWyCm7u17rU7bGRbIsLKpBAKSu8Q6eozv7OYvmNp1G5obFLKcJRKMVbCvNPE7U uNnEbFfoTbFWhs2pkgSFoPxYvBpEW4KYREsLLpRN2GGBfKGgREcmTl2lIA20Np7PxsNf T2j08VLDsgEAY8B7APrlVAovk57eMba7oEOkyTLsRebTUFIW7iHKkh6scn+oc1mPQAnD TUCw== MIME-Version: 1.0 X-Received: by 10.42.188.133 with SMTP id da5mr25631901icb.37.1424027410444; Sun, 15 Feb 2015 11:10:10 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.36.17.66 with HTTP; Sun, 15 Feb 2015 11:10:10 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 11:10:10 -0800 X-Google-Sender-Auth: hR6zej57diRbO1z52if-MQM7CiE Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Adrian Chadd To: Craig Rodrigues Content-Type: text/plain; charset=UTF-8 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: Sun, 15 Feb 2015 19:10:11 -0000 It should just work by default. are you using qemu-devel ? If not, you should be. -adrian On 15 February 2015 at 11:08, Craig Rodrigues wrote: > Can you to https://wiki.freebsd.org/FreeBSD/MipsEmulation the command-line > flags to QEMU > that allow usage of this NIC? > > Thanks. > > > > On Sun, Feb 15, 2015 at 11:03 AM, Adrian Chadd wrote: >> >> Yeah, it does: >> >> le0: irq 10 at device 11.0 on pci0 >> le0: Lazy allocation of 0x20 bytes rid 0x10 type 4 at 0x120 >> le0: 16 receive buffers, 4 transmit buffers >> le0: bpf attached >> le0: Ethernet address: 52:54:00:12:34:56 >> >> (I'm doing a buildworld right now inside it.) >> >> >> -adrian >> >> >> On 15 February 2015 at 10:55, Craig Rodrigues wrote: >> > Also, can the MALTA kernel config support any network drivers compatible >> > with QEMU? >> > I didn't see anything compiled into the default kernel config, but I >> > might >> > have missed it. >> > >> > -- >> > Craig >> > >> > On Sun, Feb 15, 2015 at 10:51 AM, Craig Rodrigues >> > wrote: >> >> >> >> Hi, >> >> >> >> Have you tried any of these options to cross-build ports: >> >> >> >> https://wiki.freebsd.org/QemuUserModeHowTo >> >> >> >> Those options look complicated, but workable. >> >> -- >> >> Craig >> >> >> >> >> >> On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd >> >> wrote: >> >>> >> >>> ... ask the ports people to support cross-building as a "thing" one >> >>> can >> >>> do? >> >>> >> >>> All of those ports you've mentioned should be a perfectly good target >> >>> for cross-building; I've done them before individually. >> >>> >> >>> >> >>> >> >>> -adrian >> >>> >> >>> >> >>> On 15 February 2015 at 10:23, Craig Rodrigues >> >>> wrote: >> >>> > Adrian, >> >>> > >> >>> > I am continuing on the work started in the Hackathon which >> >>> > you organized in January. I have this Jenkins job which >> >>> > builds a UFS image built for mips using the MALTA kernel config: >> >>> > >> >>> > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ >> >>> > >> >>> > I am using this invocation of QEMU to boot the image with 256MB RAM: >> >>> > >> >>> > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU >> >>> > >> >>> > I am now trying to build /usr/ports/devel/kyua >> >>> > inside the VM, so that I can do "cd /usr/tests ; kyua test" to run >> >>> > all the tests. >> >>> > >> >>> > However, building kyua and all its dependencies (atf, sqlite, lua, >> >>> > lutok) >> >>> > is taking a really long time inside this VM, on the order of many >> >>> > hours. >> >>> > >> >>> > Is there something I can do to boost performance so I can at least >> >>> > build >> >>> > kyua faster in this VM? >> >>> > >> >>> > -- >> >>> > Craig >> >> >> >> >> > > > From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 19:11:13 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 1FF93646; Sun, 15 Feb 2015 19:11:13 +0000 (UTC) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DDB42BB1; Sun, 15 Feb 2015 19:11:12 +0000 (UTC) Received: by iecrd18 with SMTP id rd18so29854995iec.8; Sun, 15 Feb 2015 11:11:05 -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=rgbKjFHVAD9H+SMfO/P3SJJAE36O3zwCtOQp20nUthk=; b=q4yZyWDQVdSnweZ5cr25QCXGoNfWu6hdjOWlausYkVlkVvHDy113Nc2C+6XRgA9MHO o/7nj+zWH+JLnTnj0sT+qx1l4HR5OW7936ziIjkSj+G0NbtHT50N9PhuOIr2tzh8dfr5 j8kwPFNo4dI6+FL1cDxqs2y/Zj8tP3q/Z4N8j2KIOlTah2SvUMmRwLUq1QNevbkgT6L4 OFsLmVaG9/h6gnoQvk8yjtIXqoCPith9oiDjD14nB6pZ0lewoCIq0KueYee+3tCfGJlM b6QjiLPpf6umHnSe81hFIwsnFyGX4GwactdmDFpVpe8/7HgOMr8whZy6LTkvqL1kV1j7 PN8A== MIME-Version: 1.0 X-Received: by 10.42.130.74 with SMTP id u10mr20710765ics.61.1424027465130; Sun, 15 Feb 2015 11:11:05 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.36.17.66 with HTTP; Sun, 15 Feb 2015 11:11:05 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 11:11:05 -0800 X-Google-Sender-Auth: QTKh2ohN2HLobUTGd1q5i1hM0FE Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Adrian Chadd To: Craig Rodrigues Content-Type: text/plain; charset=UTF-8 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: Sun, 15 Feb 2015 19:11:13 -0000 I run qemu-devel, and: adrian 3361 101.2 9.7 639416 381572 1 S+ 9:13PM 986:02.93 qemu-system-mips -M malta -kernel /tftpboot/kernel.MALTA -hda ../fullroot-malta.img -hdb ../malta-swap.img -nographic -m 256 -adrian On 15 February 2015 at 11:10, Adrian Chadd wrote: > It should just work by default. are you using qemu-devel ? If not, you > should be. > > > > -adrian > > On 15 February 2015 at 11:08, Craig Rodrigues wrote: >> Can you to https://wiki.freebsd.org/FreeBSD/MipsEmulation the command-line >> flags to QEMU >> that allow usage of this NIC? >> >> Thanks. >> >> >> >> On Sun, Feb 15, 2015 at 11:03 AM, Adrian Chadd wrote: >>> >>> Yeah, it does: >>> >>> le0: irq 10 at device 11.0 on pci0 >>> le0: Lazy allocation of 0x20 bytes rid 0x10 type 4 at 0x120 >>> le0: 16 receive buffers, 4 transmit buffers >>> le0: bpf attached >>> le0: Ethernet address: 52:54:00:12:34:56 >>> >>> (I'm doing a buildworld right now inside it.) >>> >>> >>> -adrian >>> >>> >>> On 15 February 2015 at 10:55, Craig Rodrigues wrote: >>> > Also, can the MALTA kernel config support any network drivers compatible >>> > with QEMU? >>> > I didn't see anything compiled into the default kernel config, but I >>> > might >>> > have missed it. >>> > >>> > -- >>> > Craig >>> > >>> > On Sun, Feb 15, 2015 at 10:51 AM, Craig Rodrigues >>> > wrote: >>> >> >>> >> Hi, >>> >> >>> >> Have you tried any of these options to cross-build ports: >>> >> >>> >> https://wiki.freebsd.org/QemuUserModeHowTo >>> >> >>> >> Those options look complicated, but workable. >>> >> -- >>> >> Craig >>> >> >>> >> >>> >> On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd >>> >> wrote: >>> >>> >>> >>> ... ask the ports people to support cross-building as a "thing" one >>> >>> can >>> >>> do? >>> >>> >>> >>> All of those ports you've mentioned should be a perfectly good target >>> >>> for cross-building; I've done them before individually. >>> >>> >>> >>> >>> >>> >>> >>> -adrian >>> >>> >>> >>> >>> >>> On 15 February 2015 at 10:23, Craig Rodrigues >>> >>> wrote: >>> >>> > Adrian, >>> >>> > >>> >>> > I am continuing on the work started in the Hackathon which >>> >>> > you organized in January. I have this Jenkins job which >>> >>> > builds a UFS image built for mips using the MALTA kernel config: >>> >>> > >>> >>> > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ >>> >>> > >>> >>> > I am using this invocation of QEMU to boot the image with 256MB RAM: >>> >>> > >>> >>> > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU >>> >>> > >>> >>> > I am now trying to build /usr/ports/devel/kyua >>> >>> > inside the VM, so that I can do "cd /usr/tests ; kyua test" to run >>> >>> > all the tests. >>> >>> > >>> >>> > However, building kyua and all its dependencies (atf, sqlite, lua, >>> >>> > lutok) >>> >>> > is taking a really long time inside this VM, on the order of many >>> >>> > hours. >>> >>> > >>> >>> > Is there something I can do to boost performance so I can at least >>> >>> > build >>> >>> > kyua faster in this VM? >>> >>> > >>> >>> > -- >>> >>> > Craig >>> >> >>> >> >>> > >> >> From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 19:32:52 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3362A28; Sun, 15 Feb 2015 19:32:52 +0000 (UTC) Received: from mail-lb0-x22c.google.com (mail-lb0-x22c.google.com [IPv6:2a00:1450:4010:c04::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 215BAD65; Sun, 15 Feb 2015 19:32:52 +0000 (UTC) Received: by mail-lb0-f172.google.com with SMTP id p9so22915575lbv.3; Sun, 15 Feb 2015 11:32:49 -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=4YMS/13V1o6oh582xON11tBSDRbVAQcT+CObDWqxIzs=; b=sLVWCzjAfhX0WPG6US8FFPMScFu5PmBCEXWPwtzCmXpyX63gYq5V3sIebqYK0YvK8n 33ISAx73WNpa3VJDwoZceZaaW2KrmguG7M42N46aAkfoQHRqHn4QYjGdXX5rGMqgQblM K2RhcYhG8vonmBVgYXgepHh7IrxvQK7rMbOTgk7RiqgNMUkfMC3sAjEurOkqjkiWYECb +TJW2PbX5otNH91MFHK+ZUIuOCErS0lCo+4G/6X1u+n0OkiVeiORH9XpkAktpELAO6do aXxwJJjsI9Id74pdt6QniWjIxCZ5+eV9QY+MBJJIb0bdYLYYgTIyPyTN4eW5uO1EPQeZ GvhA== MIME-Version: 1.0 X-Received: by 10.152.184.39 with SMTP id er7mr17154991lac.116.1424028769027; Sun, 15 Feb 2015 11:32:49 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.28.40 with HTTP; Sun, 15 Feb 2015 11:32:48 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 11:32:48 -0800 X-Google-Sender-Auth: -p-WJPRpEM6jEsTDg8eX1NKF2FA Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Craig Rodrigues To: Adrian Chadd 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: Sun, 15 Feb 2015 19:32:52 -0000 Oh OK, I do have it. I guess I missed it: ifconfig le0: flags=8843 metric 0 mtu 1500 options=8 ether 52:54:00:12:34:56 media: Ethernet autoselect status: active lo0: flags=8049 metric 0 mtu 16384 options=600003 inet 127.0.0.1 netmask 0xff000000 groups: lo On Sun, Feb 15, 2015 at 11:11 AM, Adrian Chadd wrote: > I run qemu-devel, and: > > adrian 3361 101.2 9.7 639416 381572 1 S+ 9:13PM 986:02.93 > qemu-system-mips -M malta -kernel /tftpboot/kernel.MALTA -hda > ../fullroot-malta.img -hdb ../malta-swap.img -nographic -m 256 > > > > -adrian > > > On 15 February 2015 at 11:10, Adrian Chadd wrote: > > It should just work by default. are you using qemu-devel ? If not, you > > should be. > > > > > > > > -adrian > > > > On 15 February 2015 at 11:08, Craig Rodrigues > wrote: > >> Can you to https://wiki.freebsd.org/FreeBSD/MipsEmulation the > command-line > >> flags to QEMU > >> that allow usage of this NIC? > >> > >> Thanks. > >> > >> > >> > >> On Sun, Feb 15, 2015 at 11:03 AM, Adrian Chadd > wrote: > >>> > >>> Yeah, it does: > >>> > >>> le0: irq 10 at device 11.0 on pci0 > >>> le0: Lazy allocation of 0x20 bytes rid 0x10 type 4 at 0x120 > >>> le0: 16 receive buffers, 4 transmit buffers > >>> le0: bpf attached > >>> le0: Ethernet address: 52:54:00:12:34:56 > >>> > >>> (I'm doing a buildworld right now inside it.) > >>> > >>> > >>> -adrian > >>> > >>> > >>> On 15 February 2015 at 10:55, Craig Rodrigues > wrote: > >>> > Also, can the MALTA kernel config support any network drivers > compatible > >>> > with QEMU? > >>> > I didn't see anything compiled into the default kernel config, but I > >>> > might > >>> > have missed it. > >>> > > >>> > -- > >>> > Craig > >>> > > >>> > On Sun, Feb 15, 2015 at 10:51 AM, Craig Rodrigues < > rodrigc@freebsd.org> > >>> > wrote: > >>> >> > >>> >> Hi, > >>> >> > >>> >> Have you tried any of these options to cross-build ports: > >>> >> > >>> >> https://wiki.freebsd.org/QemuUserModeHowTo > >>> >> > >>> >> Those options look complicated, but workable. > >>> >> -- > >>> >> Craig > >>> >> > >>> >> > >>> >> On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd > >>> >> wrote: > >>> >>> > >>> >>> ... ask the ports people to support cross-building as a "thing" one > >>> >>> can > >>> >>> do? > >>> >>> > >>> >>> All of those ports you've mentioned should be a perfectly good > target > >>> >>> for cross-building; I've done them before individually. > >>> >>> > >>> >>> > >>> >>> > >>> >>> -adrian > >>> >>> > >>> >>> > >>> >>> On 15 February 2015 at 10:23, Craig Rodrigues > > >>> >>> wrote: > >>> >>> > Adrian, > >>> >>> > > >>> >>> > I am continuing on the work started in the Hackathon which > >>> >>> > you organized in January. I have this Jenkins job which > >>> >>> > builds a UFS image built for mips using the MALTA kernel config: > >>> >>> > > >>> >>> > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ > >>> >>> > > >>> >>> > I am using this invocation of QEMU to boot the image with 256MB > RAM: > >>> >>> > > >>> >>> > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU > >>> >>> > > >>> >>> > I am now trying to build /usr/ports/devel/kyua > >>> >>> > inside the VM, so that I can do "cd /usr/tests ; kyua test" to > run > >>> >>> > all the tests. > >>> >>> > > >>> >>> > However, building kyua and all its dependencies (atf, sqlite, > lua, > >>> >>> > lutok) > >>> >>> > is taking a really long time inside this VM, on the order of many > >>> >>> > hours. > >>> >>> > > >>> >>> > Is there something I can do to boost performance so I can at > least > >>> >>> > build > >>> >>> > kyua faster in this VM? > >>> >>> > > >>> >>> > -- > >>> >>> > Craig > >>> >> > >>> >> > >>> > > >> > >> > From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 20:09:59 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D79E6BA for ; Sun, 15 Feb 2015 20:09:59 +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 02F268B for ; Sun, 15 Feb 2015 20:09:59 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1FK9wOR061480 for ; Sun, 15 Feb 2015 20:09:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197612] usr.sbin.pw.pw_usernext:usernext* tests are broken (but pass sometimes...?) Date: Sun, 15 Feb 2015 20:09:59 +0000 X-Bugzilla-Reason: AssignedTo 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: brd@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@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, 15 Feb 2015 20:09:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197612 --- Comment #7 from Brad Davis --- Thanks, I am running a loop of this test to see if the new fix I have takes care of it. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 20:45:36 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 7DD83DBA for ; Sun, 15 Feb 2015 20:45:36 +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 4A2085EB for ; Sun, 15 Feb 2015 20:45:36 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1FKjafD097627 for ; Sun, 15 Feb 2015 20:45:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197612] usr.sbin.pw.pw_usernext:usernext* tests are broken (but pass sometimes...?) Date: Sun, 15 Feb 2015 20:45:36 +0000 X-Bugzilla-Reason: AssignedTo 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: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@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, 15 Feb 2015 20:45:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197612 --- Comment #8 from Garrett Cooper,425-314-3911 --- (In reply to Brad Davis from comment #7) It will. Why isn't arithmetic done properly with the base value though..? $ sudo /usr/libexec/atf-sh pw_usernext.sh usernext pw_usernext.sh: WARNING: Running test cases outside of kyua(1) is unsupported pw_usernext.sh: WARNING: No isolation nor timeout control is being applied; you may get unexpected failures; see atf-test-case(4) Executing command [ pw -V /root useradd test1 ] Executing command [ pw -V /root useradd test2 ] Executing command [ pw -V /root useradd test3 ] Executing command [ pw -V /root useradd test4 ] Executing command [ pw -V /root useradd test5 ] Executing command [ pw -V /root usernext ] passed [ngie@fuji-current-amd64 /usr/src.svn/usr.sbin/pw/tests]$ sudo /usr/libexec/atf-sh pw_usernext.sh usernext_assigned_group pw_usernext.sh: WARNING: Running test cases outside of kyua(1) is unsupported pw_usernext.sh: WARNING: No isolation nor timeout control is being applied; you may get unexpected failures; see atf-test-case(4) Executing command [ pw -V /root useradd -n test1 -g 0 ] Executing command [ pw -V /root usernext ] passed $ svn diff pw_usernext.sh Index: pw_usernext.sh =================================================================== --- pw_usernext.sh (revision 278777) +++ pw_usernext.sh (working copy) @@ -15,7 +15,7 @@ atf_check -s exit:0 ${PW} useradd test$var0 var0=`expr $var0 + 1` done - atf_check -s exit:0 -o match:"100${LIMIT}:100${LIMIT}" \ + atf_check -s exit:0 -o match:"$(( 1000 + ${LIMIT} )):$(( 1000 + ${LIMIT} ))" \ ${PW} usernext } @@ -32,7 +32,7 @@ atf_check -s exit:0 ${PW} useradd -n test$var0 -g 0 var0=`expr $var0 + 1` done - atf_check -s exit:0 -o match:"100${LIMIT}:1001" \ + atf_check -s exit:0 -o match:"$(( 1000 + ${LIMIT} )):1001" \ ${PW} usernext } -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-testing@FreeBSD.ORG Sun Feb 15 21:42:45 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A2C350B for ; Sun, 15 Feb 2015 21:42:45 +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 6F013C2F for ; Sun, 15 Feb 2015 21:42:45 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1FLgjLe015521 for ; Sun, 15 Feb 2015 21:42:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197612] usr.sbin.pw.pw_usernext:usernext* tests are broken (but pass sometimes...?) Date: Sun, 15 Feb 2015 21:42:45 +0000 X-Bugzilla-Reason: AssignedTo 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: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@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, 15 Feb 2015 21:42:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197612 --- Comment #9 from commit-hook@freebsd.org --- A commit references this bug: Author: brd Date: Sun Feb 15 21:42:11 UTC 2015 New revision: 278819 URL: https://svnweb.freebsd.org/changeset/base/278819 Log: Really fix the pw_usernext tests. PR: 197612 Approved by: will Changes: head/usr.sbin/pw/tests/pw_usernext.sh -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-testing@FreeBSD.ORG Mon Feb 16 01:44:17 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 49DEA4B1; Mon, 16 Feb 2015 01:44:17 +0000 (UTC) Received: from mail-ig0-x235.google.com (mail-ig0-x235.google.com [IPv6:2607:f8b0:4001:c05::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1862E37F; Mon, 16 Feb 2015 01:44:17 +0000 (UTC) Received: by mail-ig0-f181.google.com with SMTP id hn18so20972496igb.2; Sun, 15 Feb 2015 17:44:16 -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=HxKKfcnu5+53X0jlM0g53sZWMvAo3MId+sbfTSSegIY=; b=E9Aa7DbKVQM9ssdfcKFdGbMnRPp37BnpOsXKZXyPklkPh3b9/cx87LVO8It2Gf8AxW 2QDGwI8uxdYD/NTQEz6JPTkVVyWLXTIYj8KeSh0ujcSJ8L4mNeE8zGaYQuNBSfb8LJWY rA56FenenWgx7CZv9FbI89z1AXE/19guPX7xy5zmUSNZWFmNKmG4FQ/VZzxag6zNIPcA d1hh8mXsLa68nz+nxk1/l4hajxYqnEJOjnmzmkG/UcPxUMzykEchUQ8WIy/AyVTc6D2a N5z3IcaFqiT1qj9Yj0xrApzm0zLFm7OSZ2xgG+Axt45flarRZuqImZpg7v/pf3OqR0yr ZpbQ== MIME-Version: 1.0 X-Received: by 10.42.188.133 with SMTP id da5mr26777399icb.37.1424051056425; Sun, 15 Feb 2015 17:44:16 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.36.17.66 with HTTP; Sun, 15 Feb 2015 17:44:16 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 17:44:16 -0800 X-Google-Sender-Auth: QaHxPqjSQmrtOyqlk4TDJ10YXzs Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Adrian Chadd To: Craig Rodrigues Content-Type: text/plain; charset=UTF-8 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: Mon, 16 Feb 2015 01:44:17 -0000 Cool. Does that work for you? Building the packages in the VM may take a while, but it's IMHO a good test of the VM/platform support anyway. -adrian On 15 February 2015 at 11:32, Craig Rodrigues wrote: > Oh OK, I do have it. I guess I missed it: > > ifconfig > le0: flags=8843 metric 0 mtu 1500 > options=8 > ether 52:54:00:12:34:56 > media: Ethernet autoselect > status: active > lo0: flags=8049 metric 0 mtu 16384 > options=600003 > inet 127.0.0.1 netmask 0xff000000 > groups: lo > > > On Sun, Feb 15, 2015 at 11:11 AM, Adrian Chadd wrote: >> >> I run qemu-devel, and: >> >> adrian 3361 101.2 9.7 639416 381572 1 S+ 9:13PM 986:02.93 >> qemu-system-mips -M malta -kernel /tftpboot/kernel.MALTA -hda >> ../fullroot-malta.img -hdb ../malta-swap.img -nographic -m 256 >> >> >> >> -adrian >> >> >> On 15 February 2015 at 11:10, Adrian Chadd wrote: >> > It should just work by default. are you using qemu-devel ? If not, you >> > should be. >> > >> > >> > >> > -adrian >> > >> > On 15 February 2015 at 11:08, Craig Rodrigues >> > wrote: >> >> Can you to https://wiki.freebsd.org/FreeBSD/MipsEmulation the >> >> command-line >> >> flags to QEMU >> >> that allow usage of this NIC? >> >> >> >> Thanks. >> >> >> >> >> >> >> >> On Sun, Feb 15, 2015 at 11:03 AM, Adrian Chadd >> >> wrote: >> >>> >> >>> Yeah, it does: >> >>> >> >>> le0: irq 10 at device 11.0 on pci0 >> >>> le0: Lazy allocation of 0x20 bytes rid 0x10 type 4 at 0x120 >> >>> le0: 16 receive buffers, 4 transmit buffers >> >>> le0: bpf attached >> >>> le0: Ethernet address: 52:54:00:12:34:56 >> >>> >> >>> (I'm doing a buildworld right now inside it.) >> >>> >> >>> >> >>> -adrian >> >>> >> >>> >> >>> On 15 February 2015 at 10:55, Craig Rodrigues >> >>> wrote: >> >>> > Also, can the MALTA kernel config support any network drivers >> >>> > compatible >> >>> > with QEMU? >> >>> > I didn't see anything compiled into the default kernel config, but I >> >>> > might >> >>> > have missed it. >> >>> > >> >>> > -- >> >>> > Craig >> >>> > >> >>> > On Sun, Feb 15, 2015 at 10:51 AM, Craig Rodrigues >> >>> > >> >>> > wrote: >> >>> >> >> >>> >> Hi, >> >>> >> >> >>> >> Have you tried any of these options to cross-build ports: >> >>> >> >> >>> >> https://wiki.freebsd.org/QemuUserModeHowTo >> >>> >> >> >>> >> Those options look complicated, but workable. >> >>> >> -- >> >>> >> Craig >> >>> >> >> >>> >> >> >>> >> On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd >> >>> >> wrote: >> >>> >>> >> >>> >>> ... ask the ports people to support cross-building as a "thing" >> >>> >>> one >> >>> >>> can >> >>> >>> do? >> >>> >>> >> >>> >>> All of those ports you've mentioned should be a perfectly good >> >>> >>> target >> >>> >>> for cross-building; I've done them before individually. >> >>> >>> >> >>> >>> >> >>> >>> >> >>> >>> -adrian >> >>> >>> >> >>> >>> >> >>> >>> On 15 February 2015 at 10:23, Craig Rodrigues >> >>> >>> >> >>> >>> wrote: >> >>> >>> > Adrian, >> >>> >>> > >> >>> >>> > I am continuing on the work started in the Hackathon which >> >>> >>> > you organized in January. I have this Jenkins job which >> >>> >>> > builds a UFS image built for mips using the MALTA kernel config: >> >>> >>> > >> >>> >>> > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ >> >>> >>> > >> >>> >>> > I am using this invocation of QEMU to boot the image with 256MB >> >>> >>> > RAM: >> >>> >>> > >> >>> >>> > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU >> >>> >>> > >> >>> >>> > I am now trying to build /usr/ports/devel/kyua >> >>> >>> > inside the VM, so that I can do "cd /usr/tests ; kyua test" to >> >>> >>> > run >> >>> >>> > all the tests. >> >>> >>> > >> >>> >>> > However, building kyua and all its dependencies (atf, sqlite, >> >>> >>> > lua, >> >>> >>> > lutok) >> >>> >>> > is taking a really long time inside this VM, on the order of >> >>> >>> > many >> >>> >>> > hours. >> >>> >>> > >> >>> >>> > Is there something I can do to boost performance so I can at >> >>> >>> > least >> >>> >>> > build >> >>> >>> > kyua faster in this VM? >> >>> >>> > >> >>> >>> > -- >> >>> >>> > Craig >> >>> >> >> >>> >> >> >>> > >> >> >> >> > > From owner-freebsd-testing@FreeBSD.ORG Mon Feb 16 06:58:44 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 408E913B; Mon, 16 Feb 2015 06:58:44 +0000 (UTC) Received: from mail-lb0-x235.google.com (mail-lb0-x235.google.com [IPv6:2a00:1450:4010:c04::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A3B64852; Mon, 16 Feb 2015 06:58:43 +0000 (UTC) Received: by mail-lb0-f181.google.com with SMTP id b6so25383546lbj.12; Sun, 15 Feb 2015 22:58:41 -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=IwmBasZ7K/mX+POpIakGcUAiH3mXYuNFVf2CMx9Ji7w=; b=tFbQaMGyKDXo1B2r3d9ekBVyx8yQeliYf7mh5WKuNlHyQaGLf3Mm8UlybFENnhjnyq 6xlTUNSs2OC+vTkEVKpr5DPgexVlPLMQRoBV1syU35wY6XKR4+hJreux0bb+204jV/+A hI98X7uQVYrIZKUEaS0cM3v9XczHladXT15TDS/P2HEKE3yiiNP1To6R2S1gsicoLORm I5AST9P46ts85m/IxzKPvUCt9yAKlHfB4lo4+4yTHwtdRW80IYhD/p9X0vnfl+5DIEMH wA+gKpK6KEvFuSbVfXED/8D9h3jccj8ZCMqSg+KT9CqaY4FyK9L1wpkVHFohW1k9w4sT vZVg== MIME-Version: 1.0 X-Received: by 10.152.3.42 with SMTP id 10mr4463302laz.84.1424069921645; Sun, 15 Feb 2015 22:58:41 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.28.40 with HTTP; Sun, 15 Feb 2015 22:58:41 -0800 (PST) In-Reply-To: References: Date: Sun, 15 Feb 2015 22:58:41 -0800 X-Google-Sender-Auth: SwKnKYGxCpFctuFEVYedBfHQb_o Message-ID: Subject: Re: Building Kyua inside qemu mips VM From: Craig Rodrigues To: Adrian Chadd 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: Mon, 16 Feb 2015 06:58:44 -0000 Hi, Yes, le0 interface works, I can use dhclient to get an address. Building kyua and its dependencies takes a super long time even though there are not that many. Building sqlite3 failed because the compiler ran out of RAM (I did not have swap configured), since I only had 256MB of RAM. I'm going to allocate a swap partition and see how far I get. -- Craig On Sun, Feb 15, 2015 at 5:44 PM, Adrian Chadd wrote: > Cool. Does that work for you? > > Building the packages in the VM may take a while, but it's IMHO a good > test of the VM/platform support anyway. > > > -adrian > > > On 15 February 2015 at 11:32, Craig Rodrigues wrote: > > Oh OK, I do have it. I guess I missed it: > > > > ifconfig > > le0: flags=8843 metric 0 mtu 1500 > > options=8 > > ether 52:54:00:12:34:56 > > media: Ethernet autoselect > > status: active > > lo0: flags=8049 metric 0 mtu 16384 > > options=600003 > > inet 127.0.0.1 netmask 0xff000000 > > groups: lo > > > > > > On Sun, Feb 15, 2015 at 11:11 AM, Adrian Chadd > wrote: > >> > >> I run qemu-devel, and: > >> > >> adrian 3361 101.2 9.7 639416 381572 1 S+ 9:13PM 986:02.93 > >> qemu-system-mips -M malta -kernel /tftpboot/kernel.MALTA -hda > >> ../fullroot-malta.img -hdb ../malta-swap.img -nographic -m 256 > >> > >> > >> > >> -adrian > >> > >> > >> On 15 February 2015 at 11:10, Adrian Chadd wrote: > >> > It should just work by default. are you using qemu-devel ? If not, you > >> > should be. > >> > > >> > > >> > > >> > -adrian > >> > > >> > On 15 February 2015 at 11:08, Craig Rodrigues > >> > wrote: > >> >> Can you to https://wiki.freebsd.org/FreeBSD/MipsEmulation the > >> >> command-line > >> >> flags to QEMU > >> >> that allow usage of this NIC? > >> >> > >> >> Thanks. > >> >> > >> >> > >> >> > >> >> On Sun, Feb 15, 2015 at 11:03 AM, Adrian Chadd > >> >> wrote: > >> >>> > >> >>> Yeah, it does: > >> >>> > >> >>> le0: irq 10 at device 11.0 on pci0 > >> >>> le0: Lazy allocation of 0x20 bytes rid 0x10 type 4 at 0x120 > >> >>> le0: 16 receive buffers, 4 transmit buffers > >> >>> le0: bpf attached > >> >>> le0: Ethernet address: 52:54:00:12:34:56 > >> >>> > >> >>> (I'm doing a buildworld right now inside it.) > >> >>> > >> >>> > >> >>> -adrian > >> >>> > >> >>> > >> >>> On 15 February 2015 at 10:55, Craig Rodrigues > >> >>> wrote: > >> >>> > Also, can the MALTA kernel config support any network drivers > >> >>> > compatible > >> >>> > with QEMU? > >> >>> > I didn't see anything compiled into the default kernel config, > but I > >> >>> > might > >> >>> > have missed it. > >> >>> > > >> >>> > -- > >> >>> > Craig > >> >>> > > >> >>> > On Sun, Feb 15, 2015 at 10:51 AM, Craig Rodrigues > >> >>> > > >> >>> > wrote: > >> >>> >> > >> >>> >> Hi, > >> >>> >> > >> >>> >> Have you tried any of these options to cross-build ports: > >> >>> >> > >> >>> >> https://wiki.freebsd.org/QemuUserModeHowTo > >> >>> >> > >> >>> >> Those options look complicated, but workable. > >> >>> >> -- > >> >>> >> Craig > >> >>> >> > >> >>> >> > >> >>> >> On Sun, Feb 15, 2015 at 10:26 AM, Adrian Chadd < > adrian@freebsd.org> > >> >>> >> wrote: > >> >>> >>> > >> >>> >>> ... ask the ports people to support cross-building as a "thing" > >> >>> >>> one > >> >>> >>> can > >> >>> >>> do? > >> >>> >>> > >> >>> >>> All of those ports you've mentioned should be a perfectly good > >> >>> >>> target > >> >>> >>> for cross-building; I've done them before individually. > >> >>> >>> > >> >>> >>> > >> >>> >>> > >> >>> >>> -adrian > >> >>> >>> > >> >>> >>> > >> >>> >>> On 15 February 2015 at 10:23, Craig Rodrigues > >> >>> >>> > >> >>> >>> wrote: > >> >>> >>> > Adrian, > >> >>> >>> > > >> >>> >>> > I am continuing on the work started in the Hackathon which > >> >>> >>> > you organized in January. I have this Jenkins job which > >> >>> >>> > builds a UFS image built for mips using the MALTA kernel > config: > >> >>> >>> > > >> >>> >>> > https://jenkins.freebsd.org/job/FreeBSD_HEAD_mips32_be/ > >> >>> >>> > > >> >>> >>> > I am using this invocation of QEMU to boot the image with > 256MB > >> >>> >>> > RAM: > >> >>> >>> > > >> >>> >>> > > https://wiki.freebsd.org/FreeBSD/MipsEmulation#Configuring_QEMU > >> >>> >>> > > >> >>> >>> > I am now trying to build /usr/ports/devel/kyua > >> >>> >>> > inside the VM, so that I can do "cd /usr/tests ; kyua test" to > >> >>> >>> > run > >> >>> >>> > all the tests. > >> >>> >>> > > >> >>> >>> > However, building kyua and all its dependencies (atf, sqlite, > >> >>> >>> > lua, > >> >>> >>> > lutok) > >> >>> >>> > is taking a really long time inside this VM, on the order of > >> >>> >>> > many > >> >>> >>> > hours. > >> >>> >>> > > >> >>> >>> > Is there something I can do to boost performance so I can at > >> >>> >>> > least > >> >>> >>> > build > >> >>> >>> > kyua faster in this VM? > >> >>> >>> > > >> >>> >>> > -- > >> >>> >>> > Craig > >> >>> >> > >> >>> >> > >> >>> > > >> >> > >> >> > > > > > From owner-freebsd-testing@FreeBSD.ORG Mon Feb 16 21:21:43 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 57A87A8E; Mon, 16 Feb 2015 21:21:43 +0000 (UTC) Received: from mail-lb0-f171.google.com (mail-lb0-f171.google.com [209.85.217.171]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E442923F; Mon, 16 Feb 2015 21:21:42 +0000 (UTC) Received: by lbiw7 with SMTP id w7so931690lbi.10; Mon, 16 Feb 2015 13:21:35 -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=Sb9hf3lIfu+zKofVucRQWehw0gytfOuI964widOYMKY=; b=LkkOZ2A72BLCZCSOvs7Ke42d/BT2wsUghd914aB3+CUz8iTDckscJomCc3mAes5YVP Y55+yNZ66mLLMfBGD5Hg4ZUsEKnPux0xzmvpkGJodZTbY+JA9ENct/HWTNW9Ea2PT2r7 tcwTYdEMKDQYZULne22YcmH7JiTVXARw0r7lXrVbuaupdY1tVD+a+Bl0FYz5jtwDWXht cmeLR+7J0F7LdXYPrqjCgisMNDcMv9W7XJFhv4xIIECZ9KzTB9bwxW8/a8VqFrpG3Gjq kBd+2qLIZEbyM5ilqgu+nqiTWJw2/M3UjAcfERISqNITS1tiSMAPWCcREcvR9XPGmerJ Cdvw== MIME-Version: 1.0 X-Received: by 10.112.202.227 with SMTP id kl3mr25548202lbc.81.1424121695062; Mon, 16 Feb 2015 13:21:35 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.28.40 with HTTP; Mon, 16 Feb 2015 13:21:34 -0800 (PST) In-Reply-To: <08E18A70-59E0-441D-A705-0F3F3B7B9998@FreeBSD.org> References: <08E18A70-59E0-441D-A705-0F3F3B7B9998@FreeBSD.org> Date: Mon, 16 Feb 2015 13:21:34 -0800 X-Google-Sender-Auth: 7oI7N4wB_mYS6LUbR5PQeT0UsR8 Message-ID: Subject: Re: clang and scanbuild From: Craig Rodrigues To: Dimitry Andric Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "freebsd-testing@freebsd.org" , freebsd-toolchain@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: Mon, 16 Feb 2015 21:21:43 -0000 On Wed, Feb 11, 2015 at 1:43 PM, Dimitry Andric wrote: > > Yes, choose either lang/clang-devel, or lang/clangXY, where XY is the > version you are interested in. > > > > (2) is there enough llvm source in FreeBSD that we can build this in > > FreeBSD instead of checking out llvm source? > > You can already run the analyzers with the clang executable in base, > unless you built your world using WITHOUT_CLANG_FULL. You do need perl > installed, of course. > > Nice! I did this: pkg install lang/clang-devel export PATH=$PATH:/usr/local/llvm-devel/bin scan-build cc a.c scan-build: Using '/usr/local/llvm-devel/bin/clang' for static analysis a.c:10:10: warning: Use of memory after it is freed a[5] ='b'; ~~~~ ^ 1 warning generated. scan-build: 1 bug found. scan-build: Run 'scan-view /tmp/scan-build-2015-02-16-211517-60875-1' to examine bug reports. scan-view /tmp/scan-build-2015-02-16-211517-60875-1 Traceback (most recent call last): File "/usr/local/llvm-devel/bin/scan-view", line 131, in main() File "/usr/local/llvm-devel/bin/scan-view", line 128, in main run(port, options, root) File "/usr/local/llvm-devel/bin/scan-view", line 57, in run import ScanView ImportError: No module named ScanView It looks like some stuff for scan-view is missing from the port. Do you have any ideas offhand what is missing? It's not so important, because the results of scan-build can be opened up in any web browser, independently of scan-view. Would it be possible to include scan-build somwehere under /usr/src/contrib/llvm in the FreeBSD source tree? It seems like it is handy to have. However, if it is better to only have it in the port and not in src, I understand. -- Craig -- Craig From owner-freebsd-testing@FreeBSD.ORG Mon Feb 16 21:42:48 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8A30834; Mon, 16 Feb 2015 21:42:48 +0000 (UTC) Received: from spindle.one-eyed-alien.net (spindle.one-eyed-alien.net [199.48.129.229]) by mx1.freebsd.org (Postfix) with ESMTP id 9EFD86AB; Mon, 16 Feb 2015 21:42:48 +0000 (UTC) Received: by spindle.one-eyed-alien.net (Postfix, from userid 3001) id 913E25A9F25; Mon, 16 Feb 2015 21:42:42 +0000 (UTC) Date: Mon, 16 Feb 2015 21:42:42 +0000 From: Brooks Davis To: Craig Rodrigues Subject: Re: clang and scanbuild Message-ID: <20150216214242.GA524@spindle.one-eyed-alien.net> References: <08E18A70-59E0-441D-A705-0F3F3B7B9998@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/04w6evG8XlLl3ft" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Cc: "freebsd-testing@freebsd.org" , freebsd-toolchain@freebsd.org, Dimitry Andric 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: Mon, 16 Feb 2015 21:42:48 -0000 --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 16, 2015 at 01:21:34PM -0800, Craig Rodrigues wrote: > On Wed, Feb 11, 2015 at 1:43 PM, Dimitry Andric wrote: >=20 > > > > Yes, choose either lang/clang-devel, or lang/clangXY, where XY is the > > version you are interested in. > > > > > > > (2) is there enough llvm source in FreeBSD that we can build this = in > > > FreeBSD instead of checking out llvm source? > > > > You can already run the analyzers with the clang executable in base, > > unless you built your world using WITHOUT_CLANG_FULL. You do need perl > > installed, of course. > > > > > Nice! I did this: >=20 > pkg install lang/clang-devel > export PATH=3D$PATH:/usr/local/llvm-devel/bin > scan-build cc a.c >=20 > scan-build: Using '/usr/local/llvm-devel/bin/clang' for static analysis > a.c:10:10: warning: Use of memory after it is freed > a[5] =3D'b'; > ~~~~ ^ > 1 warning generated. > scan-build: 1 bug found. > scan-build: Run 'scan-view /tmp/scan-build-2015-02-16-211517-60875-1' to > examine bug reports. >=20 > scan-view /tmp/scan-build-2015-02-16-211517-60875-1 > Traceback (most recent call last): > File "/usr/local/llvm-devel/bin/scan-view", line 131, in > main() > File "/usr/local/llvm-devel/bin/scan-view", line 128, in main > run(port, options, root) > File "/usr/local/llvm-devel/bin/scan-view", line 57, in run > import ScanView > ImportError: No module named ScanView >=20 >=20 > It looks like some stuff for scan-view is missing from the port. Do you > have any > ideas offhand what is missing? It's not so important, because the > results of scan-build can be opened up in any web browser, independently = of > scan-view. You should use the wrappers in /usr/local/bin (e.g. scan-view-devel) as the= y set up the environment so modules can be found. -- Brooks --/04w6evG8XlLl3ft Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlTiZFEACgkQXY6L6fI4GtQmAgCfd5klQkm0IfZPpthxkE9YZhN2 pfoAnivqwzKM5mXZ8gKxYgaPcI7HJ7d/ =rwag -----END PGP SIGNATURE----- --/04w6evG8XlLl3ft-- From owner-freebsd-testing@FreeBSD.ORG Mon Feb 16 21:55:13 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 53348A1 for ; Mon, 16 Feb 2015 21:55:13 +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 37958868 for ; Mon, 16 Feb 2015 21:55:13 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1GLtDG8063116 for ; Mon, 16 Feb 2015 21:55:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197612] usr.sbin.pw.pw_usernext:usernext* tests are broken (but pass sometimes...?) Date: Mon, 16 Feb 2015 21:55:13 +0000 X-Bugzilla-Reason: AssignedTo 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: brd@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status 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: Mon, 16 Feb 2015 21:55:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197612 Brad Davis changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Open |Closed --- Comment #10 from Brad Davis --- The tests are stable now. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-testing@FreeBSD.ORG Mon Feb 16 22:27:20 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 8A0EAD57; Mon, 16 Feb 2015 22:27:20 +0000 (UTC) Received: from mail-la0-f50.google.com (mail-la0-f50.google.com [209.85.215.50]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0FCA2BBF; Mon, 16 Feb 2015 22:27:19 +0000 (UTC) Received: by labms9 with SMTP id ms9so26483064lab.10; Mon, 16 Feb 2015 14:27:12 -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=WgBoLkj0HloBaR+sC4s3xMIhpsEmNOkORy6iTF2q5a4=; b=MSudUAICX2RR2NXPL3p2jmEEzFNSP67rErmQxwKsPYbqlCc+0nMXpElpPGvgPk2kWA DtmpOonQwUNrIc1JJ6/RMEKS96g8QXF5PnW8YXV2N/x6WXhbhAZL+ieJ3srnw0GFmRHL QF1WHN7qtmS4QhB1d0fhGjvmntiiHEJetNIco6jIo6OLW7vUrJ+7Q0Rhn481N3N2pa0y Kug5o6XamTdYmsbsFuUM3qb0Ox4iwSpNsdOUyvb7+eGIR4XZ3cfqQ9mw0pnzwaj1zgZv OIGk4EmJuufniSYAcWK1HWxDfNoPxiZbjPzl2wfcEXYhB1UGtYSDqGcDkyRcLLks7Ouu cMUQ== MIME-Version: 1.0 X-Received: by 10.152.26.199 with SMTP id n7mr25416584lag.29.1424125632504; Mon, 16 Feb 2015 14:27:12 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.28.40 with HTTP; Mon, 16 Feb 2015 14:27:12 -0800 (PST) In-Reply-To: <20150216214242.GA524@spindle.one-eyed-alien.net> References: <08E18A70-59E0-441D-A705-0F3F3B7B9998@FreeBSD.org> <20150216214242.GA524@spindle.one-eyed-alien.net> Date: Mon, 16 Feb 2015 14:27:12 -0800 X-Google-Sender-Auth: yMufYEvxZok8Kuc4rXpyDxIYOQ0 Message-ID: Subject: Re: clang and scanbuild From: Craig Rodrigues To: Brooks Davis Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "freebsd-testing@freebsd.org" , freebsd-toolchain@freebsd.org, Dimitry Andric 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: Mon, 16 Feb 2015 22:27:20 -0000 On Mon, Feb 16, 2015 at 1:42 PM, Brooks Davis wrote: > On Mon, Feb 16, 2015 at 01:21:34PM -0800, Craig Rodrigues wrote: > > On Wed, Feb 11, 2015 at 1:43 PM, Dimitry Andric wrote: > > > > > > > > Yes, choose either lang/clang-devel, or lang/clangXY, where XY is the > > > version you are interested in. > > > > > > > > > > (2) is there enough llvm source in FreeBSD that we can build this > in > > > > FreeBSD instead of checking out llvm source? > > > > > > You can already run the analyzers with the clang executable in base, > > > unless you built your world using WITHOUT_CLANG_FULL. You do need perl > > > installed, of course. > > > > > > > > Nice! I did this: > > > > pkg install lang/clang-devel > > export PATH=$PATH:/usr/local/llvm-devel/bin > > scan-build cc a.c > > > > scan-build: Using '/usr/local/llvm-devel/bin/clang' for static analysis > > a.c:10:10: warning: Use of memory after it is freed > > a[5] ='b'; > > ~~~~ ^ > > 1 warning generated. > > scan-build: 1 bug found. > > scan-build: Run 'scan-view /tmp/scan-build-2015-02-16-211517-60875-1' to > > examine bug reports. > > > > scan-view /tmp/scan-build-2015-02-16-211517-60875-1 > > Traceback (most recent call last): > > File "/usr/local/llvm-devel/bin/scan-view", line 131, in > > main() > > File "/usr/local/llvm-devel/bin/scan-view", line 128, in main > > run(port, options, root) > > File "/usr/local/llvm-devel/bin/scan-view", line 57, in run > > import ScanView > > ImportError: No module named ScanView > > > > > > It looks like some stuff for scan-view is missing from the port. Do you > > have any > > ideas offhand what is missing? It's not so important, because the > > results of scan-build can be opened up in any web browser, independently > of > > scan-view. > > You should use the wrappers in /usr/local/bin (e.g. scan-view-devel) as > they set up > the environment so modules can be found. > Ah, OK! scan-view-devel worked. It might be nice to have a patch in the port which changes the message from scan-build to tell folks to invoke scan-view-devel instead of scan-view. -- Craig From owner-freebsd-testing@FreeBSD.ORG Tue Feb 17 23:26:26 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AEFA2925 for ; Tue, 17 Feb 2015 23:26:26 +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 952E26B0 for ; Tue, 17 Feb 2015 23:26:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1HNQQag006669 for ; Tue, 17 Feb 2015 23:26:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197060] Test failure: local.atf.atf-sh.atf_check_test.flush_stdout_on_timeout Date: Tue, 17 Feb 2015 23:26:26 +0000 X-Bugzilla-Reason: AssignedTo 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: jmmv@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@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: Tue, 17 Feb 2015 23:26:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197060 --- Comment #3 from Julio Merino,+1 347 694 0576,New York City --- Please try revision 0e546407567ea858e261e72f75c5ed61e07d0ddf instead. That should really fix the test instead of hiding its inherent problems. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-testing@FreeBSD.ORG Thu Feb 19 16:12:50 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 E1E61815 for ; Thu, 19 Feb 2015 16:12:50 +0000 (UTC) Received: from valentine.liquidneon.com (cl-1479.chi-02.us.sixxs.net [IPv6:2001:4978:f:5c6::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "valentine.liquidneon.com", Issuer "Gandi Standard SSL CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BC119A76 for ; Thu, 19 Feb 2015 16:12:50 +0000 (UTC) Received: by valentine.liquidneon.com (Postfix, from userid 1018) id 0E9358FFBF; Thu, 19 Feb 2015 09:12:48 -0700 (MST) Date: Thu, 19 Feb 2015 09:12:47 -0700 From: Brad Davis To: freebsd-testing@FreeBSD.org Subject: Jenkins and testing Message-ID: <20150219161247.GY64109@valentine.liquidneon.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) 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, 19 Feb 2015 16:12:51 -0000 Hi, Can someone tell me the difference between: FreeBSD_HEAD-tests and FreeBSD_HEAD-tests2 Can we get the FreeBSD_HEAD-tests2 added to the 'FreeBSD_src_head' view? Regards, Brad Davis From owner-freebsd-testing@FreeBSD.ORG Thu Feb 19 20:19:08 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DAA4D50D; Thu, 19 Feb 2015 20:19:08 +0000 (UTC) Received: from mail-pa0-x232.google.com (mail-pa0-x232.google.com [IPv6:2607:f8b0:400e:c03::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A6226C6B; Thu, 19 Feb 2015 20:19:08 +0000 (UTC) Received: by padfb1 with SMTP id fb1so2204592pad.8; Thu, 19 Feb 2015 12:19:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:mime-version:in-reply-to:content-type :content-transfer-encoding:message-id:cc:from:subject:date:to; bh=xJFut3S2DAX8JM16WSpwbvEdm/w3JbW73RDIabeB1+4=; b=BFgQUdwsTUyrZhL5EFItVu8K1n8JpFfIBE4Q4WUwmGobHPLjCTaXv6V4lotadEAnvA 8feP/700Ei9mef7wdOZVeQ5RFu1ARyJnhL9fKPhC+9xq4IAdMWZ6obLsIKkIkbeLyssJ ZpEy+kF2k/yXZdPUkUQOe7M+1UQyya+ww3/wMmC+8zvvoNQVlJjhI649OEOVhDhBJxsp Mm0rvLtnMCjW490Ho6k8GK1w72eaSpYGvf/OKQXTtqvPEF2pHj2xcrJXpYLzhDNq1rJD EP7oS7swkQSpt/ZxTGDokN0bVEXCFpot/kAx2fSgal+Bysu++vnHDvlaRkZ+XMCDSAk3 5tkw== X-Received: by 10.68.237.165 with SMTP id vd5mr11073437pbc.44.1424377148112; Thu, 19 Feb 2015 12:19:08 -0800 (PST) Received: from ?IPv6:2601:8:ab80:7d6:1dfe:cac7:37d1:fca8? ([2601:8:ab80:7d6:1dfe:cac7:37d1:fca8]) by mx.google.com with ESMTPSA id k9sm23379952pdr.63.2015.02.19.12.19.07 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 19 Feb 2015 12:19:07 -0800 (PST) References: <20150219161247.GY64109@valentine.liquidneon.com> Mime-Version: 1.0 (1.0) In-Reply-To: <20150219161247.GY64109@valentine.liquidneon.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: X-Mailer: iPhone Mail (12B466) From: Garrett Cooper Subject: Re: Jenkins and testing Date: Thu, 19 Feb 2015 12:19:06 -0800 To: Brad Davis 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: Thu, 19 Feb 2015 20:19:08 -0000 > On Feb 19, 2015, at 08:12, Brad Davis wrote: >=20 > Hi, >=20 > Can someone tell me the difference between: >=20 > FreeBSD_HEAD-tests >=20 > and >=20 > FreeBSD_HEAD-tests2 >=20 > Can we get the FreeBSD_HEAD-tests2 added to the 'FreeBSD_src_head' view? Hi Brad! "tests" was the old Jenkins job Julio was using to try and integrate tes= ting and Jenkins together. Tests2 supersedes tests. HTH,= From owner-freebsd-testing@FreeBSD.ORG Fri Feb 20 20:59:56 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DD2F65FE for ; Fri, 20 Feb 2015 20:59:56 +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 C3DE88F0 for ; Fri, 20 Feb 2015 20:59:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1KKxum9072012 for ; Fri, 20 Feb 2015 20:59:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197861] [jenkins] usr.sbin.pw.pw_useradd:user_add_password_expiration_date_relative failed Date: Fri, 20 Feb 2015 20:59:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new 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 Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: 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: Fri, 20 Feb 2015 20:59:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197861 Bug ID: 197861 Summary: [jenkins] usr.sbin.pw.pw_useradd:user_add_password_expiration_da te_relative failed Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: tests Assignee: freebsd-testing@freebsd.org Reporter: ngie@FreeBSD.org See this link for the failure: https://jenkins.freebsd.org/job/FreeBSD_HEAD-tests2/733/testReport/junit/usr.sbin.pw/pw_useradd/user_add_password_expiration_date_relative/ -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-testing@FreeBSD.ORG Fri Feb 20 21:00:15 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5ADE623 for ; Fri, 20 Feb 2015 21:00:15 +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 9C6EF8F6 for ; Fri, 20 Feb 2015 21:00:15 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1KL0FDa076790 for ; Fri, 20 Feb 2015 21:00:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197861] [jenkins] usr.sbin.pw.pw_useradd:user_add_password_expiration_date_relative failed Date: Fri, 20 Feb 2015 21:00:15 +0000 X-Bugzilla-Reason: AssignedTo 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 Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: brd@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to 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: Fri, 20 Feb 2015 21:00:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197861 Garrett Cooper,425-314-3911 changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |freebsd-testing@freebsd.org | |, will@FreeBSD.org Assignee|freebsd-testing@freebsd.org |brd@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. From owner-freebsd-testing@FreeBSD.ORG Fri Feb 20 21:01: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 ECB5A662 for ; Fri, 20 Feb 2015 21:01: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 D37CD993 for ; Fri, 20 Feb 2015 21:01: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 t1KL1gDL000927 for ; Fri, 20 Feb 2015 21:01:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197861] [jenkins] usr.sbin.pw.pw_useradd:user_add_password_expiration_date_relative failed Date: Fri, 20 Feb 2015 21:01:43 +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 Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: brd@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: Fri, 20 Feb 2015 21:01:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197861 --- Comment #1 from Garrett Cooper,425-314-3911 --- Yeah... the clock ticked and the compared value was off by a second. -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-testing@FreeBSD.ORG Fri Feb 20 21:01:57 2015 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36BB6683 for ; Fri, 20 Feb 2015 21:01:57 +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 1D7AB998 for ; Fri, 20 Feb 2015 21:01:57 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1KL1uDh005303 for ; Fri, 20 Feb 2015 21:01:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 197861] [jenkins] usr.sbin.pw.pw_useradd:user_add_password_expiration_date_relative failed Date: Fri, 20 Feb 2015 21:01:57 +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: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: brd@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity 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: Fri, 20 Feb 2015 21:01:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197861 Garrett Cooper,425-314-3911 changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Only Me |Affects Some People -- You are receiving this mail because: You are on the CC list for the bug.