From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 84366 invoked by alias); 22 Jul 2017 18:08:52 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 84349 invoked by uid 89); 22 Jul 2017 18:08:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:967 X-HELO: mail-vk0-f53.google.com Received: from mail-vk0-f53.google.com (HELO mail-vk0-f53.google.com) (209.85.213.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 22 Jul 2017 18:08:49 +0000 Received: by mail-vk0-f53.google.com with SMTP id i187so6644481vke.4 for ; Sat, 22 Jul 2017 11:08:49 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to:cc; bh=fdXaNkmfc/GDYpe6AFrxWfftck9LKaphZIZWRXNadCk=; b=dRH6DSNpXm7Gw3K8GCIPReAMEIn7ZQr02rUcE1LAGByfKStib06mCCsgsVJxGJp5QL Na/6oGUXXRulwUuwONyH08cHERm9IejtxHaPslQgHOWV/f4bPQZZ+pO6h6GRJ2kFtMlQ LwkLcQ2NLQFeAPIvX4ZrbVqC6Wpy8oHHd8YSmHoTCJ4HRusAyhK3mPSu5K6wB6yYSXct 6r6orT+Tt8NiIPapyX2sSoM5/q91ebNzZx3Red+ahpP4SqN0R8hkND/JLhLm9bzIR9HA vU+TPtTDT38EsOGrBS1t6GNCElCnwXYxolFwz7Z6lKMQECkBH1n8nLAXYJy27wpfVnwn blWw== X-Gm-Message-State: AIVw11165Z7gCJPuI0b4sHTzkqJy8eMPp1ay2okXSaz0sHaYgnC214FA u7mjnBPX21CNtxOdXyHzr2e9SVOkxaXg X-Received: by 10.31.155.19 with SMTP id d19mr6436596vke.196.1500746927795; Sat, 22 Jul 2017 11:08:47 -0700 (PDT) MIME-Version: 1.0 Received: by 10.103.68.218 with HTTP; Sat, 22 Jul 2017 11:08:47 -0700 (PDT) From: Uros Bizjak Date: Sat, 22 Jul 2017 18:08:00 -0000 Message-ID: Subject: Re: gotools patch committed: Test runtime, misc/cgo/{test,testcarchive} To: "gcc-patches@gcc.gnu.org" Cc: Ian Taylor , "gofrontend-dev@googlegroups.com" Content-Type: text/plain; charset="UTF-8" X-SW-Source: 2017-07/txt/msg01365.txt.bz2 > This patch to the gotools Makefile adds tests to `make check`. We now > test the runtime package using the newly built go tool, and test that > cgo works by running the misc/cgo/test and misc/cgo/testcarchive > tests. Bootstrapped and ran Go testsuite on x86_64-pc-linux-gnu. > Committed to mainline. There is now only one remaining gotools testsuite failure on alpha: FAIL: TestBreakpoint crash_test.go:106: testprog Breakpoint exit status: exit status 2 crash_test.go:310: output: SIGTRAP: trace trap PC=2199039253124 m=0 sigcode=0 goroutine 1 [running]: goroutine 3 [runnable]: created by runtime.SetFinalizer /space/homedirs/uros/gcc-svn/trunk/libgo/go/runtime/mfinal.go:355 +1280 want output containing: runtime.Breakpoint I would like to debug this one failure only. Is there a way to run only one gotools test? Can you perhaps give a hint where to look in the source? Uros.