From patchwork Mon Mar 30 05:09:13 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 5897 Received: (qmail 1286 invoked by alias); 30 Mar 2015 05:09:58 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 935 invoked by uid 89); 30 Mar 2015 05:09:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.2 required=5.0 tests=AWL, BAYES_00, SPF_PASS, T_RP_MATCHES_RCVD, URIBL_BLACK autolearn=no version=3.3.2 X-HELO: smtp.gentoo.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 30 Mar 2015 05:09:16 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 5FC10340C31 for ; Mon, 30 Mar 2015 05:09:14 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: d10v: link in missing testsuite Date: Mon, 30 Mar 2015 01:09:13 -0400 Message-Id: <1427692153-12656-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes Looks like historical restructuring in this dir lost the d10v-elf subdir and no one noticed in the meantime. Re-add it to the testsuite. There are some failures, but better some tests get run than none at all. Committed. --- sim/testsuite/ChangeLog | 5 +++++ sim/testsuite/configure | 11 ++++++++--- sim/testsuite/configure.ac | 3 +++ 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/sim/testsuite/ChangeLog b/sim/testsuite/ChangeLog index 55ef169..6bae4e5 100644 --- a/sim/testsuite/ChangeLog +++ b/sim/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-03-30 Mike Frysinger + + * configure.ac: Add d10v-*-elf. + * configure: Regenerate. + 2015-03-29 Mike Frysinger * lib/sim-defs.exp (run_sim_test): Declare seen_output as 0. When diff --git a/sim/testsuite/configure b/sim/testsuite/configure index fdba43d..c5980fe 100755 --- a/sim/testsuite/configure +++ b/sim/testsuite/configure @@ -614,7 +614,8 @@ enable_option_checking ac_precious_vars='build_alias host_alias target_alias' -ac_subdirs_all='frv-elf +ac_subdirs_all='d10v-elf +frv-elf m32r-elf mips64el-elf' @@ -1792,10 +1793,14 @@ test -n "$target_alias" && # Configure sub-directory for appropriate targets case ${target} in - frv-*-elf ) + d10v-*-elf ) + +subdirs="$subdirs d10v-elf" -subdirs="$subdirs frv-elf" + ;; + frv-*-elf ) + subdirs="$subdirs frv-elf" ;; m32r-*-elf ) diff --git a/sim/testsuite/configure.ac b/sim/testsuite/configure.ac index ba17a33..b61fce0 100644 --- a/sim/testsuite/configure.ac +++ b/sim/testsuite/configure.ac @@ -14,6 +14,9 @@ AC_CANONICAL_SYSTEM # Configure sub-directory for appropriate targets case ${target} in + d10v-*-elf ) + AC_CONFIG_SUBDIRS(d10v-elf) + ;; frv-*-elf ) AC_CONFIG_SUBDIRS(frv-elf) ;;