From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pete Wyckoff Subject: [PATCH v2 0/6] git-p4 tests, filetypes, shell metacharacters Date: Sat, 15 Oct 2011 11:53:58 -0400 Message-ID: <20111015155358.GA29436@arf.padd.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Junio C Hamano , Luke Diamand , Chris Li To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Sat Oct 15 17:55:29 2011 Return-path: Envelope-to: gcvg-git-2@lo.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RF6a8-0008ET-K6 for gcvg-git-2@lo.gmane.org; Sat, 15 Oct 2011 17:55:28 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753429Ab1JOPyY (ORCPT ); Sat, 15 Oct 2011 11:54:24 -0400 Received: from honk.padd.com ([74.3.171.149]:35589 "EHLO honk.padd.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753390Ab1JOPyX (ORCPT ); Sat, 15 Oct 2011 11:54:23 -0400 Received: from arf.padd.com (unknown [50.55.131.180]) by honk.padd.com (Postfix) with ESMTPSA id 635552822; Sat, 15 Oct 2011 08:54:22 -0700 (PDT) Received: by arf.padd.com (Postfix, from userid 7770) id 5FD9E31465; Sat, 15 Oct 2011 11:53:58 -0400 (EDT) Content-Disposition: inline Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: This series of six patches has been reviewed on the mailing list and should be ready for inclusion. 1 - Clean up git-p4 tests, including Junio review comments 2..4 - Handle p4 filetypes better, including Chris's suggested utf16 fix 5 - Fix p4 keyword parsing 6 - From Luke: avoid using the shell, so filenames with metacharacters are not errantly expanded Luke Diamand (1): git-p4: handle files with shell metacharacters Pete Wyckoff (5): git-p4 tests: refactor and cleanup git-p4: handle utf16 filetype properly git-p4: recognize all p4 filetypes git-p4: stop ignoring apple filetype git-p4: keyword flattening fixes contrib/fast-import/git-p4 | 287 +++++++++++++------- t/lib-git-p4.sh | 74 +++++ t/t9800-git-p4.sh | 574 ++++++++++++++++++---------------------- t/t9801-git-p4-branch.sh | 233 ++++++++++++++++ t/t9802-git-p4-filetype.sh | 108 ++++++++ t/t9803-git-shell-metachars.sh | 64 +++++ 6 files changed, 918 insertions(+), 422 deletions(-) create mode 100644 t/lib-git-p4.sh create mode 100755 t/t9801-git-p4-branch.sh create mode 100755 t/t9802-git-p4-filetype.sh create mode 100755 t/t9803-git-shell-metachars.sh