git-p4: fix empty file processing for large file system backend GitLFS
commitd5eb3cf5e7e4274e12e0f249b3a026c029f3b02c
authorLars Schneider <larsxschneider@gmail.com>
Sun, 4 Dec 2016 16:03:37 +0000 (4 17:03 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 5 Dec 2016 22:57:33 +0000 (5 14:57 -0800)
tree1b35de2367855a3ffecdc42245183793575842e5
parent454cb6bd52a4de614a3633e4f547af03d5c3b640
git-p4: fix empty file processing for large file system backend GitLFS

If git-p4 tried to store an empty file in GitLFS then it crashed while
parsing the pointer file:

  oid = re.search(r'^oid \w+:(\w+)', pointerFile, re.MULTILINE).group(1)
  AttributeError: 'NoneType' object has no attribute 'group'

This happens because GitLFS does not create a pointer file for an empty
file. Teach git-p4 this behavior to fix the problem and add a test case.

Signed-off-by: Lars Schneider <larsxschneider@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-p4.py
t/t9824-git-p4-git-lfs.sh