Re: [PATCH 3/3] get_sha1: support ref^{/regex} syntax
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:50:15
Nguyễn Thái Ngọc Duy [off-list ref] writes:
+test_expect_success 'ref^{/}' '
+ git rev-parse master >expected &&
+ git rev-parse master^{/} >actual &&
+ test_cmp expected actual
+'
This test fails on FBSD 8, which refuses to regcomp("")
saying "empty (sub)expression", which is somewhat bogus.
I'd change it to "/." for now ;-).