From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 118936 invoked by alias); 20 Jul 2015 20:45:41 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 118924 invoked by uid 89); 20 Jul 2015 20:45:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 X-HELO: usevmg20.ericsson.net Received: from usevmg20.ericsson.net (HELO usevmg20.ericsson.net) (198.24.6.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Mon, 20 Jul 2015 20:45:39 +0000 Received: from EUSAAHC001.ericsson.se (Unknown_Domain [147.117.188.75]) by usevmg20.ericsson.net (Symantec Mail Security) with SMTP id 17.4A.12958.F120DA55; Mon, 20 Jul 2015 16:13:51 +0200 (CEST) Received: from [142.133.110.144] (147.117.188.8) by smtp-am.internal.ericsson.com (147.117.188.77) with Microsoft SMTP Server id 14.3.210.2; Mon, 20 Jul 2015 16:45:36 -0400 Message-ID: <55AD5DF0.2090303@ericsson.com> Date: Mon, 20 Jul 2015 20:45:00 -0000 From: Simon Marchi User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: , Subject: Re: MIPS build slave References: <55A9E3F5.3090902@imgtec.com> <87fv4kswuh.fsf@redhat.com> <55AD543B.5010301@imgtec.com> In-Reply-To: <55AD543B.5010301@imgtec.com> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00572.txt.bz2 On 15-07-20 04:04 PM, Brendan Kirby wrote: > I ran the steps below. The build was successful. I built with commit > 7ac018954bd9 because the latest one was failing to build. However, I'm > still not seeing this file. I've attached the output of running "make > check RUNTESTFLAGS='gdb.mi/mi-watch.exp'" in the file > gdb.mi-mi-watch.exp.out and I've attached the gdb/testsuite/gdb.log file > in gdb.mi-mi-watch.exp.log. Let me know if you want me to try > anything else. > > Brendan Thanks for trying that. Looking at the error message (any of them), the pattern is: Cannot exec $execfile -c exec $execfile This looks awfully as if it should be $SHELL -c exec $execfile but that somehow the exec-file name ended up in place of the shell. That command line seems to be constructed in fork-child.c:fork_inferior, but I don't see how it could end up like that. It's probably not related, but let's rule out obvious things. I notice that the SHELL of the user running the buildbot slave is be /sbin/nologin (from an output of show env in gdb.log). It seems to be a problem for some tests that use the shell command at least (search for nologin in the log). Setting the shell of the user to a real shell will help for those. When you ran the make check RUNTESTFLAGS="..." command that Sergio asked you to run, was it as the same user as the buildbot slave's user? I assume not, since the shell is nologin. Would it be possible to try it again, but this time as that user? Simon