#!/bin/sh # # Testcase for failing 'git am' on a repository with core.autocrlf = true # ./git_am_crlf_testcase.sh fails for Git 1.5.3.rc4 # ./git_am_crlf_testcase.sh --no-crlf passes # # -------------------------------------------------------------------------------------------------- TESTCASE_REPO=git_am_crlf_testcase GIT_AUTOCRLF=true # parse the arguments while [ "$#" -gt 0 ]; do case "$1" in --no-crlf) # Turn off autocrlf for the repository GIT_AUTOCRLF=false ;; --crlf) # Turn on autocrlf for the repository GIT_AUTOCRLF=true ;; esac shift done # Functions ---------------------------------------------------------------------------------------- die() { echo >&2 "$@" exit 1 } print_patch() { cat << __END_OF_PATCH__ From 38be10072e45dd6b08ce40851e3fca60a31a340b Mon Sep 17 00:00:00 2001 From: Marius Storm-Olsen Date: Thu, 23 Aug 2007 13:00:00 +0200 Subject: test1 --- foo | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 foo diff --git a/foo b/foo new file mode 100644 index 0000000000000000000000000000000000000000..5716ca5987cbf97d6bb54920bea6adde242d87e6 --- /dev/null +++ b/foo @@ -0,0 +1 @@ +bar -- 1.5.3.rc4.mingw.2.3.g3318a-dirty From 3bb3855cf028fc90010e2f51aceb6d3a90039c5c Mon Sep 17 00:00:00 2001 From: Marius Storm-Olsen Date: Thu, 23 Aug 2007 13:00:01 +0200 Subject: test2 --- foo | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/foo b/foo index 5716ca5987cbf97d6bb54920bea6adde242d87e6..e2994c5ae2f7c41a306d9b41b64af4d6b7242793 100644 --- a/foo +++ b/foo @@ -1 +1,2 @@ bar +baz -- 1.5.3.rc4.mingw.2.3.g3318a-dirty From 38212fd002da735b3626c6f1d801c8ca37ce04e6 Mon Sep 17 00:00:00 2001 From: Marius Storm-Olsen Date: Thu, 23 Aug 2007 13:00:02 +0200 Subject: test3 --- foo | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/foo b/foo index e2994c5ae2f7c41a306d9b41b64af4d6b7242793..ad94f9e431a24bbe67e9e5935e2a8cf20a73e723 100644 --- a/foo +++ b/foo @@ -1,2 +1,3 @@ bar baz +blah -- 1.5.3.rc4.mingw.2.3.g3318a-dirty __END_OF_PATCH__ } # 'main' ------------------------------------------------------------------------------------------- # Kill old testcase repository test -d "$TESTCASE_REPO" && rm -rf $TESTCASE_REPO # Create new testcase repository mkdir $TESTCASE_REPO && cd $TESTCASE_REPO && git init || die "Couldn\'t create testcase repository \'$TESTCASE_REPO\'!" # Set autocrlf explicitly git config core.autocrlf $GIT_AUTOCRLF || die "Couldn\'t set core.autocrlf to \'$GIT_AUTOCRLF\'!" # Create initial commit (echo foo > bar && git add bar && git commit -m "initial commit") || die "Couldn\'t create initial file!" # Apply failing patch set print_patch | git am --binary -3 || die "Applying patch set to autocrlf=true repo failed!"