From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: bug#29546: Intermittent test failures in 'git' Date: Sun, 03 Dec 2017 06:47:10 -0500 Message-ID: <87lgikyqwx.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56505) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eLSkg-00042j-4s for bug-guix@gnu.org; Sun, 03 Dec 2017 06:48:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eLSkc-0000HB-Tz for bug-guix@gnu.org; Sun, 03 Dec 2017 06:48:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33774) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eLSkc-0000H3-Qh for bug-guix@gnu.org; Sun, 03 Dec 2017 06:48:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eLSkc-0004UO-EZ for bug-guix@gnu.org; Sun, 03 Dec 2017 06:48:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56393) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eLSkA-0002tH-Us for bug-guix@gnu.org; Sun, 03 Dec 2017 06:47:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eLSk5-0008Qk-S5 for bug-guix@gnu.org; Sun, 03 Dec 2017 06:47:33 -0500 Received: from world.peace.net ([50.252.239.5]:39458) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eLSk5-0008QO-Ny for bug-guix@gnu.org; Sun, 03 Dec 2017 06:47:29 -0500 List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 29546@debbugs.gnu.org On Hydra, the following intermittent test failure in 'git' has occurred twice in the last two days, and twice about a month ago: --8<---------------cut here---------------start------------->8--- not ok 3 - git svn branch tests # # test_must_fail git svn branch a && # git svn branch --parents a && # test_must_fail git svn branch -t tag1 && # git svn branch --parents -t tag1 && # test_must_fail git svn branch --tag tag2 && # git svn branch --parents --tag tag2 && # test_must_fail git svn tag tag3 && # git svn tag --parents tag3 # # failed 1 among 3 test(s) 1..3 make[2]: *** [Makefile:49: t9167-git-svn-cmd-branch-subproject.sh] Error 1 --8<---------------cut here---------------end--------------->8--- The problem is not architecture specific. It has occurred at least once on all three hydra-supported-systems (x86_64, i686, and armhf). The collateral damage includes several hundred dependency failures. The following error also happened once on x86_64 about a month ago: --8<---------------cut here---------------start------------->8--- not ok 3 - git svn branch tests # # git svn branch a && # base=$(git rev-parse HEAD:) && # test $base = $(git rev-parse remotes/origin/a:) && # git svn branch -m "created branch b blah" b && # test $base = $(git rev-parse remotes/origin/b:) && # test_must_fail git branch -m "no branchname" && # git svn branch -n c && # test_must_fail git rev-parse remotes/origin/c && # test_must_fail git svn branch a && # git svn branch -t tag1 && # test $base = $(git rev-parse remotes/origin/tags/tag1:) && # git svn branch --tag tag2 && # test $base = $(git rev-parse remotes/origin/tags/tag2:) && # git svn tag tag3 && # test $base = $(git rev-parse remotes/origin/tags/tag3:) && # git svn tag -m "created tag4 foo" tag4 && # test $base = $(git rev-parse remotes/origin/tags/tag4:) && # test_must_fail git svn tag -m "no tagname" && # git svn tag -n tag5 && # test_must_fail git rev-parse remotes/origin/tags/tag5 && # test_must_fail git svn tag tag1 # [...] # failed 1 among 4 test(s) 1..4 make[2]: *** [Makefile:49: t9128-git-svn-cmd-branch.sh] Error 1 --8<---------------cut here---------------end--------------->8--- Mark