From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 118932 invoked by alias); 27 Apr 2015 15:17:37 -0000 Mailing-List: contact gdb-testers-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-testers-owner@sourceware.org Received: (qmail 118858 invoked by uid 89); 27 Apr 2015 15:17:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.2 X-HELO: kwanyin.sergiodj.net Received: from kwanyin.sergiodj.net (HELO kwanyin.sergiodj.net) (176.31.208.32) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 27 Apr 2015 15:17:35 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] Do not manipulate "target:" filenames as local paths From: sergiodj+buildbot@redhat.com To: gdb-testers@sourceware.org Message-Id: <5fbae7d108f4b885228cc657449905543c42c85a@kwanyin> Date: Mon, 27 Apr 2015 15:17:00 -0000 X-SW-Source: 2015-q2/txt/msg03078.txt.bz2 *** TEST RESULTS FOR COMMIT 5fbae7d108f4b885228cc657449905543c42c85a *** Author: Gary Benson Branch: master Commit: 5fbae7d108f4b885228cc657449905543c42c85a Do not manipulate "target:" filenames as local paths This commit alters two places that manipulate object file filenames to detect "target:" filenames and to not attempt to manipulate them as paths on the local filesystem: - allocate_objfile is updated to not attempt to expand "target:" filenames with gdb_abspath. - load_auto_scripts_for_objfile is updated to not attempt to load auto-load scripts for object files with "target:" filenames. gdb/ChangeLog: * objfiles.c (allocate_objfile): Do not attempt to expand name if name is a "target:" filename. * auto-load.c (load_auto_scripts_for_objfile): Do not attempt to load auto-load scripts for objfiles with "target:" filenames.