Jeff King <peff@xxxxxxxx> writes: > +test_expect_success \ > + 'apply delta with too many copied bytes' \ > + 'printf "\5\1\221\0\2" > too_big_copy && > + echo base >base && > + test_must_fail test-tool delta -p base too_big_copy /dev/null' Would "echo base >base" give us 5-byte long base even on Windows? Or the test does not care if it is either "base\n" or "base\r\n"? Just double-checking.