From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by sourceware.org (Postfix) with ESMTP id 0F6C138618BD for ; Tue, 1 Sep 2020 17:08:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0F6C138618BD Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-237-ztAQFWT9PxauEn4lfkOUTg-1; Tue, 01 Sep 2020 13:08:34 -0400 X-MC-Unique: ztAQFWT9PxauEn4lfkOUTg-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 11881189E606; Tue, 1 Sep 2020 17:08:33 +0000 (UTC) Received: from theo.uglyboxes.com (ovpn-112-162.phx2.redhat.com [10.3.112.162]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D686778B55; Tue, 1 Sep 2020 17:08:32 +0000 (UTC) Subject: Re: Creating local play area To: Serhei Makarov References: <25dabd44-4d48-b809-c97c-9c0069f19d40@redhat.com> <9f1d8e59-d504-49ee-aa78-6ccb11d441d3@www.fastmail.com> Cc: bunsen@sourceware.org From: Keith Seitz Message-ID: <18faefee-505f-ff03-ee6e-b329f0fad7d1@redhat.com> Date: Tue, 1 Sep 2020 10:08:32 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <9f1d8e59-d504-49ee-aa78-6ccb11d441d3@www.fastmail.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Mimecast-Spam-Score: 0.001 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-Language: en-US X-Spam-Status: No, score=-9.3 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: bunsen@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Bunsen mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Sep 2020 17:08:38 -0000 [re-adding list] On 9/1/20 8:43 AM, Serhei Makarov wrote: > > On Tue, Sep 1, 2020, at 11:23 AM, Keith Seitz via Bunsen wrote: >> 5) mkdir bunsen.git; pushd bunsen.git >> 6) git init >> 7) popd > The 'bunsen init' subcommand creates the correct data: > $ git clone https://sourceware.org/git/bunsen.git bunsen-test > $ pushd bunsen-test > $ ./bunsen.py init > $ ls .bunsen > bunsen.git config scripts > $ popd > $ BUNSEN_REPO=./bunsen-test ./bunsen-test/bunsen.py run +list_runs > >> gitdb.exc.BadName: Ref 'HEAD' did not resolve to an object >> >> I've almost assuredly goofed with #6. > > 'bunsen init' creates an initial commit from which to branch; the > error is due to the Git repo you used not yet having any commits. Oh, geez. I was just thinking to myself, "There should be some sort of initialization subcommand for new repositories." Doh! I finally got it to import my test run by setting both BUNSEN_DIR and BUNSEN_REPO. > > The warnings are non-fatal but may point to ways the GDB log parser can be improved. > Due to the nature of GDB's test suite, there will be plenty of room (on both sides) for improvement. Keith