From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ed1-x532.google.com (mail-ed1-x532.google.com [IPv6:2a00:1450:4864:20::532]) by sourceware.org (Postfix) with ESMTPS id 89F12385E01D for ; Fri, 4 Jun 2021 09:56:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 89F12385E01D Received: by mail-ed1-x532.google.com with SMTP id dj8so10453140edb.6 for ; Fri, 04 Jun 2021 02:56:38 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:mime-version :content-description:content-disposition; bh=qvMmdQ5rUALK00wbrZumsSbC+ZbPQql5v2TJCsL8Fm8=; b=ZnRNqzurBC7ruvKwNLtsE1gPcsBquDMWnZ6hjTkuaDgvZXnsd1c4eJgjs19jWl7zp8 qUOhoRVZYM4pP306CtcCcmaFja1OCNg+7kA511As5V3SNl/jXZzzZn6eTeoujEuErCJZ DSPcHhTmS0l3GcKfK1KZplEjDEPA7VpeEBaPKymjA9kJpx9Ugk6eC8bX/g3CasIwwFmN lsiI2Rffl+D1UIDJJaottgJJbzTlHtv70x6ftykrQgAxP3BYFrTCU7OHl3T6wrK1ERhY Up5Q0gt+4FmTIH8bTWKix0s0t9ilyWAmtsakTQLCfTQ6QtVuPLWZShAVzos0/inz31NJ OHiQ== X-Gm-Message-State: AOAM532xIqLcZynck5oF9qRwdKJucNcggqbmMFVEpZQ5dtdsC0aM18D+ fb9E0soZgopqymd/rH+Crk8Kx94c39eqvA== X-Google-Smtp-Source: ABdhPJw+gTEraBlN7OwNfdJEyJ0JgyYAS1Xgte+EinZ8C81b1KC5i2UJFFVK7aNK6w1c+OpyX1REGA== X-Received: by 2002:a05:6402:1a4b:: with SMTP id bf11mr3793286edb.286.1622800597661; Fri, 04 Jun 2021 02:56:37 -0700 (PDT) Received: from gmail.com ([2a03:1b20:3:f011::6d]) by smtp.gmail.com with ESMTPSA id ot30sm1963854ejb.61.2021.06.04.02.56.36 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 04 Jun 2021 02:56:37 -0700 (PDT) Date: Fri, 4 Jun 2021 11:56:48 +0200 From: Shahab Vahedi To: Tom Tromey Cc: gdb@sourceware.org Subject: Question about running "make check-gdb" Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Description: check_gdb_for_arc Content-Disposition: inline X-Spam-Status: No, score=-5.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, 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: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jun 2021 09:56:49 -0000 Hi Tom, Couple of days ago, you've pushed a refactoring commit [1] to gdb. I noticed after that change I am not able to run gdb tests for ARC targets anymore. I investigated a little bit and it seems like that the "target_alias" in generated "gdb/testsuite/site.exp" is not recognized correctly: ------ After the commit ------- $ configure --target=arc-elf32 ... $ make $ make check-gdb $ cat gdb/testsuite/site.exp ... set target_alias @target_noncanonical@ ... ------ After the commit ------- ------ Before the commit ------- $ ./configure --target=arc-elf32 ... $ make $ make check-gdb $ cat gdb/testsuite/site.exp ... set target_alias arc-elf32 ... ------ Before the commit ------- I've tried some other target combinations as well to no avail: $ ./configure --target=arc-none-elf32 $ ./configure --target=arc-snps-elf $ ... I would much appreciate it if you could point me in the direction of how to fix this. Cheers, Shahab [1] Remove gdb/testsuite/configure https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=f99d1d374