From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 60296 invoked by alias); 26 Jul 2015 11:51:44 -0000 Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org Received: (qmail 60284 invoked by uid 89); 26 Jul 2015 11:51:43 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pd0-f176.google.com Received: from mail-pd0-f176.google.com (HELO mail-pd0-f176.google.com) (209.85.192.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Sun, 26 Jul 2015 11:51:41 +0000 Received: by pdbbh15 with SMTP id bh15so36394713pdb.1 for ; Sun, 26 Jul 2015 04:51:40 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.70.20.5 with SMTP id j5mr54848118pde.40.1437911500048; Sun, 26 Jul 2015 04:51:40 -0700 (PDT) Received: by 10.70.46.39 with HTTP; Sun, 26 Jul 2015 04:51:39 -0700 (PDT) In-Reply-To: References: Date: Sun, 26 Jul 2015 11:51:00 -0000 Message-ID: Subject: Re: Travis CI setup From: Ciro Santilli To: Simon Marchi Cc: "gdb@sourceware.org" Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00054.txt.bz2 Thanks for the tip! I have added it as well, and the number of tests did go up. I think on 14.04 apt-get build-dep installs it, but apparently not in 12.04. On Sat, Jul 25, 2015 at 7:42 PM, Simon Marchi wrote: > On 25 July 2015 at 13:34, Ciro Santilli wrote: >> I've made a Travis CI build at: >> https://github.com/cirosantilli/binutils-gdb/tree/gdb/travis >> >> It runs in an Ubuntu 12.04 AMD64 machine. >> >> It finishes in 20 minutes with 30 errors: >> https://s3.amazonaws.com/archive.travis-ci.org/jobs/72605568/log.txt , >> less than the 46 on my Ubuntu 14.04 machine, and the same Buildbot >> commit result. >> >> With parallel tests make -j$(ncpus) it runs in 4 minutes, but the >> error rate goes up. >> >> Best of all: free testing infrastructure, that can be used by anyone >> to test commits on branches before they are merged. >> >> Let me know if the build steps on the .travis.yml can be improved >> somehow to reduce false errors. > > Hi Ciro, > > You could install the systemtap-sdt-dev package, that would allow > running the tests that currently exit early with: > > fatal error: sys/sdt.h: No such file or directory > > They probably show as untested or unsupported right now, so it won't > reduce the number of failures, just raise the number of passes. > > Simon