* t9902-completion.sh failed
@ 2014-11-13 10:59 Alex Kuleshov
2014-11-13 11:24 ` Jeff King
0 siblings, 1 reply; 5+ messages in thread
From: Alex Kuleshov @ 2014-11-13 10:59 UTC (permalink / raw)
To: git@vger.kernel.org
Hello all,
i just got git from master (f6f61cbbad0611e03b712cc354f1665b5d7b087e),
built and installed it successfully, now i'm running make test and got
following error:
*** t9902-completion.sh ***
t9902-completion.sh: 118:
/home/shk/dev/git/t/../contrib/completion/git-completion.bash: Syntax
error: "(" unexpected (expecting "fi")
FATAL: Unexpected exit with code 2
make[2]: *** [t9902-completion.sh] Error 1
make[2]: Leaving directory `/home/shk/dev/git/t'
make[1]: *** [test] Error 2
make[1]: Leaving directory `/home/shk/dev/git/t'
make: *** [test] Error 2
$ bash --version
4.3.11(1)-release (x86_64-pc-linux-gnu)
--
Best regards.
0xAX
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: t9902-completion.sh failed
2014-11-13 10:59 t9902-completion.sh failed Alex Kuleshov
@ 2014-11-13 11:24 ` Jeff King
2014-11-13 11:34 ` Alex Kuleshov
2014-11-13 18:35 ` Alex Kuleshov
0 siblings, 2 replies; 5+ messages in thread
From: Jeff King @ 2014-11-13 11:24 UTC (permalink / raw)
To: Alex Kuleshov; +Cc: git@vger.kernel.org
On Thu, Nov 13, 2014 at 04:59:12PM +0600, Alex Kuleshov wrote:
> i just got git from master (f6f61cbbad0611e03b712cc354f1665b5d7b087e),
> built and installed it successfully, now i'm running make test and got
> following error:
>
> *** t9902-completion.sh ***
> t9902-completion.sh: 118:
> /home/shk/dev/git/t/../contrib/completion/git-completion.bash: Syntax
> error: "(" unexpected (expecting "fi")
> FATAL: Unexpected exit with code 2
> make[2]: *** [t9902-completion.sh] Error 1
> make[2]: Leaving directory `/home/shk/dev/git/t'
> make[1]: *** [test] Error 2
> make[1]: Leaving directory `/home/shk/dev/git/t'
> make: *** [test] Error 2
>
> $ bash --version
> 4.3.11(1)-release (x86_64-pc-linux-gnu)
Weird. I can't reproduce here, using the version of bash from Debian
unstable (4.3.30(1)), nor compiling 4.3.11 from sources. What platform
are you on (i.e., might it be bash + some other patches installed by the
distro)?
-Peff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: t9902-completion.sh failed
2014-11-13 11:24 ` Jeff King
@ 2014-11-13 11:34 ` Alex Kuleshov
2014-11-13 13:55 ` Jeff King
2014-11-13 18:35 ` Alex Kuleshov
1 sibling, 1 reply; 5+ messages in thread
From: Alex Kuleshov @ 2014-11-13 11:34 UTC (permalink / raw)
To: Jeff King; +Cc: git@vger.kernel.org
Hello Jeff,
I'm using ubuntu 14.04 x86_64 and bash GNU bash, version
4.3.11(1)-release (x86_64-pc-linux-gnu).
I didn't applied any patches to bash for all time since i installed
system. so it reall weird
Jeff King <peff@peff.net> @ 2014-11-13 17:24 ALMT:
> On Thu, Nov 13, 2014 at 04:59:12PM +0600, Alex Kuleshov wrote:
>
>> i just got git from master (f6f61cbbad0611e03b712cc354f1665b5d7b087e),
>> built and installed it successfully, now i'm running make test and got
>> following error:
>>
>> *** t9902-completion.sh ***
>> t9902-completion.sh: 118:
>> /home/shk/dev/git/t/../contrib/completion/git-completion.bash: Syntax
>> error: "(" unexpected (expecting "fi")
>> FATAL: Unexpected exit with code 2
>> make[2]: *** [t9902-completion.sh] Error 1
>> make[2]: Leaving directory `/home/shk/dev/git/t'
>> make[1]: *** [test] Error 2
>> make[1]: Leaving directory `/home/shk/dev/git/t'
>> make: *** [test] Error 2
>>
>> $ bash --version
>> 4.3.11(1)-release (x86_64-pc-linux-gnu)
>
> Weird. I can't reproduce here, using the version of bash from Debian
> unstable (4.3.30(1)), nor compiling 4.3.11 from sources. What platform
> are you on (i.e., might it be bash + some other patches installed by the
> distro)?
>
> -Peff
--
Best regards.
0xAX
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: t9902-completion.sh failed
2014-11-13 11:34 ` Alex Kuleshov
@ 2014-11-13 13:55 ` Jeff King
0 siblings, 0 replies; 5+ messages in thread
From: Jeff King @ 2014-11-13 13:55 UTC (permalink / raw)
To: Alex Kuleshov; +Cc: git@vger.kernel.org
On Thu, Nov 13, 2014 at 05:34:50PM +0600, Alex Kuleshov wrote:
> I'm using ubuntu 14.04 x86_64 and bash GNU bash, version
> 4.3.11(1)-release (x86_64-pc-linux-gnu).
>
> I didn't applied any patches to bash for all time since i installed
> system. so it reall weird
I tried on a fresh install of Ubuntu 14.04.1, with the same version of
bash, and I still can't reproduce the problem. I'm not sure what else to
check.
-Peff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: t9902-completion.sh failed
2014-11-13 11:24 ` Jeff King
2014-11-13 11:34 ` Alex Kuleshov
@ 2014-11-13 18:35 ` Alex Kuleshov
1 sibling, 0 replies; 5+ messages in thread
From: Alex Kuleshov @ 2014-11-13 18:35 UTC (permalink / raw)
To: Jeff King; +Cc: git
ah, i catched the problem, I launched make test with sudo and now all
tests passed successfully.
Jeff King <peff@peff.net> @ 2014-11-13 17:24 ALMT:
> On Thu, Nov 13, 2014 at 04:59:12PM +0600, Alex Kuleshov wrote:
>
>> i just got git from master (f6f61cbbad0611e03b712cc354f1665b5d7b087e),
>> built and installed it successfully, now i'm running make test and got
>> following error:
>>
>> *** t9902-completion.sh ***
>> t9902-completion.sh: 118:
>> /home/shk/dev/git/t/../contrib/completion/git-completion.bash: Syntax
>> error: "(" unexpected (expecting "fi")
>> FATAL: Unexpected exit with code 2
>> make[2]: *** [t9902-completion.sh] Error 1
>> make[2]: Leaving directory `/home/shk/dev/git/t'
>> make[1]: *** [test] Error 2
>> make[1]: Leaving directory `/home/shk/dev/git/t'
>> make: *** [test] Error 2
>>
>> $ bash --version
>> 4.3.11(1)-release (x86_64-pc-linux-gnu)
>
> Weird. I can't reproduce here, using the version of bash from Debian
> unstable (4.3.30(1)), nor compiling 4.3.11 from sources. What platform
> are you on (i.e., might it be bash + some other patches installed by the
> distro)?
>
> -Peff
--
Best regards.
0xAX
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-11-13 18:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-13 10:59 t9902-completion.sh failed Alex Kuleshov
2014-11-13 11:24 ` Jeff King
2014-11-13 11:34 ` Alex Kuleshov
2014-11-13 13:55 ` Jeff King
2014-11-13 18:35 ` Alex Kuleshov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).