t / t4110-apply-scan.shon commit contrib/buildsystems: redirect errors of the dry run into a log file (03aa711)
   1#!/bin/sh
   2#
   3# Copyright (c) 2005 Junio C Hamano
   4# Copyright (c) 2005 Robert Fitzsimons
   5#
   6
   7test_description='git apply test for patches which require scanning forwards and backwards.
   8
   9'
  10. ./test-lib.sh
  11
  12test_expect_success 'git apply scan' '
  13        git apply \
  14                "$TEST_DIRECTORY/t4110/patch1.patch" \
  15                "$TEST_DIRECTORY/t4110/patch2.patch" \
  16                "$TEST_DIRECTORY/t4110/patch3.patch" \
  17                "$TEST_DIRECTORY/t4110/patch4.patch" \
  18                "$TEST_DIRECTORY/t4110/patch5.patch" &&
  19        test_cmp new.txt "$TEST_DIRECTORY/t4110/expect"
  20'
  21
  22test_done