From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27097 invoked by alias); 8 Jul 2014 14:14:19 -0000 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org Received: (qmail 27068 invoked by uid 89); 8 Jul 2014 14:14:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-we0-f176.google.com Received: from mail-we0-f176.google.com (HELO mail-we0-f176.google.com) (74.125.82.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 08 Jul 2014 14:14:17 +0000 Received: by mail-we0-f176.google.com with SMTP id u56so6039013wes.7 for ; Tue, 08 Jul 2014 07:14:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=dTW6kS7B2t4QtXxeVk5dmo/RazpjUziOxjWCJerw+dc=; b=VxCEOuUzl7HLL43i2EXpPgIzm8ylIN21cC9d/zqxWfeDNo1XEEL2O6Zmf971Tx2AOF SLhEJF/AHCIuC5THiJt9gyyGvR/F4dt7vECYHuQWGdIiV8bNDpzTvNOPhK+1U6LtucuQ PZPtJuutpR+HobBbgHm0oToQ9qhvag7OCYldltY5CGJ09z9+FRvaF49GRuJvrZF+czGr FFymltJKKLg1aADgbIRdf7k0Us/M2/GL3ftOauExf64EB3jGiafdeSlTKwLgJqllwJB6 oGwspNPlPjJ0/834wX2FRuQrdyCWxde5EHx2xb78idvU6JTVjM5RUiR94PdFPMFa+Teu SxSw== X-Gm-Message-State: ALoCoQlh89VS9AqT/P2TFJ4hj6Is0VK4nXnhwxqSJmzREJ8KenGFa7B0EEIet9Ty7+EwS70Cm4qe X-Received: by 10.194.63.77 with SMTP id e13mr11796857wjs.104.1404828854019; Tue, 08 Jul 2014 07:14:14 -0700 (PDT) Received: from localhost.localdomain (cpc6-seac21-2-0-cust453.7-2.cable.virginm.net. [82.1.113.198]) by mx.google.com with ESMTPSA id rw4sm96656641wjb.44.2014.07.08.07.14.12 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 08 Jul 2014 07:14:12 -0700 (PDT) From: Will Newton To: binutils@sourceware.org Subject: [PATCH 2/4] binutils/testsuite: Disable strip-10 test on ARM non-EABI Date: Tue, 08 Jul 2014 14:14:00 -0000 Message-Id: <1404828845-20737-2-git-send-email-will.newton@linaro.org> In-Reply-To: <1404828845-20737-1-git-send-email-will.newton@linaro.org> References: <1404828845-20737-1-git-send-email-will.newton@linaro.org> X-IsSubscribed: yes X-SW-Source: 2014-07/txt/msg00102.txt.bz2 Non-EABI ARM targets set OSABI to ARM regardless of whether or not GNU features have been used which causes this test to fail. binutils/testsuite/ChangeLog: 2014-07-08 Will Newton * binutils-all/objcopy.exp: Disable the strip-10 test on non-EABI ARM configurations. --- binutils/testsuite/binutils-all/objcopy.exp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/binutils/testsuite/binutils-all/objcopy.exp b/binutils/testsuite/binutils-all/objcopy.exp index a7e1396..f4fa0b2 100644 --- a/binutils/testsuite/binutils-all/objcopy.exp +++ b/binutils/testsuite/binutils-all/objcopy.exp @@ -953,8 +953,10 @@ if [is_elf_format] { run_dump_test "strip-7" run_dump_test "strip-8" run_dump_test "strip-9" + # Non-EABI ARM targets will set OSABI to ARM if { ![istarget "*-*-hpux*"] - && ![istarget "msp*-*-*"] } { + && ![istarget "msp*-*-*"] + && !([istarget "arm*-*-*"] && ![istarget "arm-*-*eabi*"])} { run_dump_test "strip-10" } -- 1.9.3