From patchwork Fri Mar 6 13:01:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jon Turney X-Patchwork-Id: 5495 Received: (qmail 69068 invoked by alias); 6 Mar 2015 13:01:47 -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 69057 invoked by uid 89); 6 Mar 2015 13:01:46 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL, BAYES_00, KAM_STOCKGEN, RCVD_IN_DNSWL_NONE autolearn=no version=3.3.2 X-HELO: rgout06.bt.lon5.cpcloud.co.uk Received: from rgout06.bt.lon5.cpcloud.co.uk (HELO rgout06.bt.lon5.cpcloud.co.uk) (65.20.0.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 06 Mar 2015 13:01:46 +0000 X-OWM-Source-IP: 31.51.205.191(GB) X-OWM-Env-Sender: jonturney@btinternet.com X-CTCH-RefID: str=0001.0A090201.54F9A537.01C7, ss=1, re=0.001, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-Junkmail-Premium-Raw: score=27/50, refid=2.7.2:2015.3.5.621:17:27.888, ip=31.51.205.191, rules=__HAS_FROM, __TO_MALFORMED_2, __TO_NO_NAME, __SUBJ_ALPHA_END, __HAS_MSGID, __SANE_MSGID, __HAS_X_MAILER, __ANY_URI, __URI_NO_WWW, __URI_NO_PATH, BODYTEXTP_SIZE_3000_LESS, BODY_SIZE_1600_1699, __MIME_TEXT_ONLY, RDNS_GENERIC_POOLED, __URI_NS, SXL_IP_DYNAMIC[191.205.51.31.fur], HTML_00_01, HTML_00_10, BODY_SIZE_5000_LESS, RDNS_SUSP_GENERIC, RDNS_SUSP, BODY_SIZE_2000_LESS, BODY_SIZE_7000_LESS X-CTCH-Spam: Unknown Received: from localhost.localdomain (31.51.205.191) by rgout06.bt.lon5.cpcloud.co.uk (8.6.122.06) (authenticated as jonturney@btinternet.com) id 54F7816C003D4DE1; Fri, 6 Mar 2015 13:01:42 +0000 From: Jon TURNEY To: gdb-patches@sourceware.org Cc: Jon TURNEY Subject: [PATCH] testsuite: Don't set SYMBOL_PREFIX for x86_64-*-cygwin Date: Fri, 6 Mar 2015 13:01:28 +0000 Message-Id: <1425646888-4332-1-git-send-email-jon.turney@dronecode.org.uk> Exactly like x86_64-*-mingw, SYMBOL_PREFIX should not be set to "_" for x86_64-*-cygwin I'm not sure that testsuite results on x86_64-*-cygwin tell you a great deal, but for the record: -# of expected passes 20510 -# of unexpected failures 649 +# of expected passes 21456 +# of unexpected failures 729 # of unexpected successes 2 # of expected failures 42 -# of known failures 50 -# of untested testcases 90 -# of unresolved testcases 9 -# of unsupported tests 114 +# of known failures 52 +# of untested testcases 80 +# of unresolved testcases 184 +# of unsupported tests 118 ChangeLog/gdb/testuite: 2015-03-04 Jon TURNEY * lib/gdb.exp (gdb_target_symbol_prefix_flags): Don't set SYMBOL_PREFIX for x86_64-*-cygwin. Signed-off-by: Jon TURNEY --- gdb/testsuite/lib/gdb.exp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index f274b64..0041adf 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -4998,7 +4998,7 @@ proc core_find {binfile {deletefiles {}} {arg ""}} { # TODO: find out automatically if the target needs this. proc gdb_target_symbol_prefix_flags {} { - if { [istarget "*-*-cygwin*"] || [istarget "i?86-*-mingw*"] + if { [istarget "i?86-*-cygwin*"] || [istarget "i?86-*-mingw*"] || [istarget "*-*-msdosdjgpp*"] || [istarget "*-*-go32*"] } { return "additional_flags=-DSYMBOL_PREFIX=\"_\"" } else {