Skip to content

Instantly share code, notes, and snippets.

@ricardo-martincoski
Created December 2, 2016 00:49
Show Gist options
  • Save ricardo-martincoski/bab4ca3257ef292c7175df1e4fdc17e4 to your computer and use it in GitHub Desktop.
Save ricardo-martincoski/bab4ca3257ef292c7175df1e4fdc17e4 to your computer and use it in GitHub Desktop.
comparing logs for support/download/git: git init + git fetch
test101_tag_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test101b_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test101c_tag_using_full_name_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... FAIL
test102_tag_can_be_preferred_over_branch_by_using_full_name (__main__.TestSuiteSupportDownloadGitRefs) ... warning: refname 'feature102' is ambiguous.
ok
test201_sha1_not_branch_head_but_in_a_branch_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test201b_sha1_not_branch_head_but_in_a_branch_does_not_use_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test202_sha1_of_branch_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test203_partial_sha1_of_branch_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test204_sha1_of_commit_pointed_by_a_tag_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test204b_sha1_of_commit_pointed_by_a_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... FAIL
test205_sha1_head_of_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test206_sha1_not_branch_head_but_in_a_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test207_partial_sha1_of_tagged_commit_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test208_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... FAIL
test209_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... FAIL
test210_partial_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... FAIL
test211_partial_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... FAIL
test212_partial_ambiguous_sha1_cannot_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... error: short SHA1 0236 is ambiguous.
fatal: ambiguous argument '0236': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
FAIL
test301_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test302_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test401_branch_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test402_branch_is_preferred_over_tag (__main__.TestSuiteSupportDownloadGitRefs) ... warning: refname 'feature402' is ambiguous.
ok
test403_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test501_tag_can_be_used_when_there_are_submodules_without_support_to_git_modules (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test502_tag_can_be_used_when_there_are_submodules_with_support_to_git_modules (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test901_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
======================================================================
FAIL: test101c_tag_using_full_name_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 60, in test101c_tag_using_full_name_uses_optimized_download
self.then_i_can_see_a_shallow_fetch_was_enough()
File "/tmp/0/test/support/download/git_keywords.py", line 69, in then_i_can_see_a_shallow_fetch_was_enough
self.assertTrue(result, "A shallow fetch was not enough")
AssertionError: A shallow fetch was not enough
======================================================================
FAIL: test204b_sha1_of_commit_pointed_by_a_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 109, in test204b_sha1_of_commit_pointed_by_a_tag_uses_optimized_download
self.then_i_can_see_a_shallow_fetch_was_enough()
File "/tmp/0/test/support/download/git_keywords.py", line 69, in then_i_can_see_a_shallow_fetch_was_enough
self.assertTrue(result, "A shallow fetch was not enough")
AssertionError: A shallow fetch was not enough
======================================================================
FAIL: test208_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 134, in test208_sha1_of_special_ref_can_be_used
self.when_i_download_the_version(sha1)
File "/tmp/0/test/support/download/git_keywords.py", line 46, in when_i_download_the_version
self.assertEqual(0, result, "download of version %s failed" % version)
AssertionError: download of version 2ba54e9c586fd474f3138d8e642230a93afac35a failed
======================================================================
FAIL: test209_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 141, in test209_sha1_of_merged_special_ref_can_be_used
self.when_i_download_the_version(sha1)
File "/tmp/0/test/support/download/git_keywords.py", line 46, in when_i_download_the_version
self.assertEqual(0, result, "download of version %s failed" % version)
AssertionError: download of version 725b5df20714d07bc0c089f5ec857856bab51bd4 failed
======================================================================
FAIL: test210_partial_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 148, in test210_partial_sha1_of_special_ref_can_be_used
self.when_i_download_the_version(partial_sha1)
File "/tmp/0/test/support/download/git_keywords.py", line 46, in when_i_download_the_version
self.assertEqual(0, result, "download of version %s failed" % version)
AssertionError: download of version 19da3d4811da4ddb062d failed
======================================================================
FAIL: test211_partial_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 158, in test211_partial_sha1_of_merged_special_ref_can_be_used
self.when_i_download_the_version(partial_sha1)
File "/tmp/0/test/support/download/git_keywords.py", line 46, in when_i_download_the_version
self.assertEqual(0, result, "download of version %s failed" % version)
AssertionError: download of version 8c4ff5850ea97de213ab failed
======================================================================
FAIL: test212_partial_ambiguous_sha1_cannot_be_used (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 164, in test212_partial_ambiguous_sha1_cannot_be_used
self.when_i_download_the_version(partial_sha1)
File "/tmp/0/test/support/download/git_keywords.py", line 46, in when_i_download_the_version
self.assertEqual(0, result, "download of version %s failed" % version)
AssertionError: download of version 0236 failed
----------------------------------------------------------------------
Ran 26 tests in 326.566s
FAILED (failures=7)
>>> aer-inject 9bd5e2c7886fca72f139cd8402488a2235957d41 Downloading
Doing full clone
32K .git/objects
Checked out '9bd5e2c7886fca72f139cd8402488a2235957d41'.
>>> am33x-cm3 11107db2f1e9e58ee75d4fe9cc38423c9a6e4365 Downloading
Doing full clone
5,6M .git/objects
Checked out '11107db2f1e9e58ee75d4fe9cc38423c9a6e4365'.
>>> aufs aa3d7447003abd5e3c437de52d8da2e6203390ac Downloading
Doing full clone
4,6M .git/objects
Checked out 'aa3d7447003abd5e3c437de52d8da2e6203390ac'.
>>> aufs-util 3ed045ce3bbb05b3583308ee2de0a319d17f5011 Downloading
Doing full clone
300K .git/objects
Checked out '3ed045ce3bbb05b3583308ee2de0a319d17f5011'.
>>> dtv-scan-tables ceb11833b35f05813b1f0397a60e0f3b99430aab Downloading
Doing full clone
1,8M .git/objects
Checked out 'ceb11833b35f05813b1f0397a60e0f3b99430aab'.
>>> expedite ffa005ea3de26b4219f32c285cb1665bb1366163 Downloading
Doing full clone
6,9M .git/objects
Checked out 'ffa005ea3de26b4219f32c285cb1665bb1366163'.
>>> f2fs-tools v1.6.1 Downloading
Doing shallow clone
444K .git/objects
Checked out '759df520ae0be9753b5ccf095a6ea19d45d09c01'.
>>> host-netsurf-buildsystem 7574b41345968b5f7e9ca5875faccb1478ce0555 Downloading
Doing full clone
2,1M .git/objects
Checked out '7574b41345968b5f7e9ca5875faccb1478ce0555'.
>>> host-pseudo 45eca34c754d416a38bee90fb2d3c110a0b6cc5f Downloading
Doing full clone
716K .git/objects
Checked out '45eca34c754d416a38bee90fb2d3c110a0b6cc5f'.
>>> host-squashfs 9c1db6d13a51a2e009f0027ef336ce03624eac0d Downloading
Doing full clone
1,9M .git/objects
Checked out '9c1db6d13a51a2e009f0027ef336ce03624eac0d'.
>>> host-vboot-utils bbdd62f9b030db7ad8eef789aaf58a7ff9a25656 Downloading
Doing full clone
40M .git/objects
Checked out 'bbdd62f9b030db7ad8eef789aaf58a7ff9a25656'.
>>> kismet Kismet-2014-02-R1 Downloading
Doing shallow clone
Doing full clone
36M .git/objects
Checked out '2a7c6f1d231a08fb7b6e1831360f050fc20c855e'.
>>> kvmtool bed2bd9e1fbef5819090feeada7b86eed97ca5e2 Downloading
Doing full clone
1,8M .git/objects
Checked out 'bed2bd9e1fbef5819090feeada7b86eed97ca5e2'.
>>> kvm-unit-tests 5731572b2ac23eb410732110b93425b5bb7f27dd Downloading
Doing full clone
912K .git/objects
Checked out '5731572b2ac23eb410732110b93425b5bb7f27dd'.
>>> libbroadvoice f65b0f50c8c767229fbf1758370880abc0d78564 Downloading
Doing full clone
212K .git/objects
Checked out 'f65b0f50c8c767229fbf1758370880abc0d78564'.
>>> libcodec2 392a55b4f3f8ad30d845ac6ae35e8b27343bb944 Downloading
Doing full clone
3,1M .git/objects
Checked out '392a55b4f3f8ad30d845ac6ae35e8b27343bb944'.
>>> libg7221 dbfc29d4806ecdace50379a2f4d68a992a6fec34 Downloading
Doing full clone
276K .git/objects
Checked out 'dbfc29d4806ecdace50379a2f4d68a992a6fec34'.
>>> libilbc 829b08c7902ceb87a261279fabb36b6d523c6e07 Downloading
Doing full clone
800K .git/objects
Checked out '829b08c7902ceb87a261279fabb36b6d523c6e07'.
>>> libsilk 4268a02240c35c6055b0f237c46b09b2dcf79e45 Downloading
Doing full clone
724K .git/objects
Checked out '4268a02240c35c6055b0f237c46b09b2dcf79e45'.
>>> libsoundtouch 010a91a59071c7fefd316fca62c0d980ec85b4b1 Downloading
Doing full clone
168K .git/objects
Checked out '010a91a59071c7fefd316fca62c0d980ec85b4b1'.
>>> libsvgtiny ea9d99fc8b231c22d06168135e181d61f4eb2f06 Downloading
Doing full clone
3,3M .git/objects
Checked out 'ea9d99fc8b231c22d06168135e181d61f4eb2f06'.
>>> libyuv 1ebf86795cb213a37f06eb1ef3713cff080568ea Downloading
Doing full clone
3,0M .git/objects
Checked out '1ebf86795cb213a37f06eb1ef3713cff080568ea'.
>>> linux-firmware a179db97914da5e650c21ba8f9b0bae04a0f8a41 Downloading
Doing full clone
98M .git/objects
Checked out 'a179db97914da5e650c21ba8f9b0bae04a0f8a41'.
>>> mcelog v111 Downloading
Doing shallow clone
332K .git/objects
Checked out '96580a426f7ba92598fd7a3667cc2b78fc8d162f'.
>>> opkg v0.3.1 Downloading
Doing shallow clone
296K .git/objects
Checked out '3ce3625c8924552699ae57d0e453a7dcc7d388b5'.
>>> qt-webkit-kiosk 7fe40a350abfbe5ec194e7c6c740f7099e8704cd Downloading
Doing full clone
232K .git/objects
Checked out '7fe40a350abfbe5ec194e7c6c740f7099e8704cd'.
>>> sunxi-mali d343311efc8db166d8371b28494f0f27b6a5872 Downloading
Doing full clone
116K .git/objects
Checked out 'd343311efc8db166d8371b28494f0f27b6a58724'.
>>> trace-cmd trace-cmd-v2.6 Downloading
Doing shallow clone
1,9M .git/objects
Checked out '9be5d74805830a291615f2f34a27c903f6a37b1e'.
>>> uemacs 8841922689769960fa074fbb053cb8507f2f3ed9 Downloading
Doing full clone
472K .git/objects
Checked out '8841922689769960fa074fbb053cb8507f2f3ed9'.
>>> uhttpd 59e0c739634f46a164d939e54416287b91ff8a9b Downloading
Doing full clone
180K .git/objects
Checked out '59e0c739634f46a164d939e54416287b91ff8a9b'.
>>> arm-trusted-firmware v1.2 Downloading
Doing shallow clone
2,0M .git/objects
Checked out 'd0c104e1e1ad0102f0f4c70997b7ee6e6fbbe273'.
>>> at91bootstrap3 v3.8.6 Downloading
Doing shallow clone
524K .git/objects
Checked out '7ca51179bb94dc48415b77db8f3757479d59cac1'.
>>> at91bootstrap3 v3.8.7 Downloading
Doing shallow clone
524K .git/objects
Checked out '68b49c41f263c71ede046d99a8c5dd224b75903b'.
>>> uboot rel_socfpga_v2013.01.01_14.02.02 Downloading
Doing shallow clone
Doing full clone
91M .git/objects
Checked out 'e0d19aa80086b99a1dacb320eb12cb20e577aebc'.
>>> uboot rel_acds13.0sp1 Downloading
Doing shallow clone
Doing full clone
91M .git/objects
Checked out '191737ccb1214dfd02a3b279549ad4bc0e5218c1'.
>>> uboot linux4sam_5.5 Downloading
Doing shallow clone
16M .git/objects
Checked out '801b789cb0eba61596f23d89f31db63767d84533'.
>>> uboot a4f583551d0025eb957ee5c9cb68657a429e4914 Downloading
Doing full clone
61M .git/objects
Checked out 'a4f583551d0025eb957ee5c9cb68657a429e4914'.
>>> uboot rel_imx_4.1.15_2.0.0_ga Downloading
Doing shallow clone
17M .git/objects
Checked out '0ec2a019117bb2d59b9672a145b4684313d92782'.
>>> uboot 1ec799cec97574a9838bc25b286484e579a41652 Downloading
Doing full clone
107M .git/objects
Checked out '1ec799cec97574a9838bc25b286484e579a41652'.
>>> uboot a035d2673a90143a1a74557503b2e137b1447ae6 Downloading
Doing full clone
83M .git/objects
Checked out 'a035d2673a90143a1a74557503b2e137b1447ae6'.
>>> uboot 1ef4a29e8cea0239411dde64f9617ad76248fd02 Downloading
Doing full clone
108M .git/objects
Checked out '1ef4a29e8cea0239411dde64f9617ad76248fd02'.
>>> uboot via_3.10.17_2.0.6 Downloading
Doing shallow clone
16M .git/objects
Checked out '4ddf7448ff54261c4730a8b3f06a31f20f8370f6'.
>>> uboot xilinx-v2016.2 Downloading
Doing shallow clone
16M .git/objects
Checked out '0daf88c7f8c9085a81336a0ad2dd3bcc84c7a18a'.
>>> linux rel_socfpga-3.13_14.02.02 Downloading
Doing shallow clone
Doing full clone
994M .git/objects
Checked out 'bb0bb0a2a05443edef7af9f7de9fc8c3f36f01cb'.
>>> linux linux4sam_5.5 Downloading
Doing shallow clone
150M .git/objects
Checked out '061f02b7aa3c26f02cd01be1ca0e4812192ba9a2'.
>>> linux 52c4aa7cdb93d61f8008f380135beaf7b8fa6593 Downloading
Doing full clone
1,1G .git/objects
Checked out '52c4aa7cdb93d61f8008f380135beaf7b8fa6593'.
>>> linux fbf929bc733b82b15f6996d4262a45870f19d214 Downloading
Doing full clone
1,5G .git/objects
Checked out 'fbf929bc733b82b15f6996d4262a45870f19d214'.
>>> linux ccb89e9b5657b4911c16d08e1581121222ee12c4 Downloading
Doing full clone
1,8G .git/objects
Checked out 'ccb89e9b5657b4911c16d08e1581121222ee12c4'.
>>> linux rel_imx_4.1.15_2.0.0_ga Downloading
Doing shallow clone
146M .git/objects
Checked out 'b63f3f52cb393e3287352cf63f0caef31a33ab63'.
>>> linux 0feded4f96ddca9816c6c1b8a4780cb4065747b9 Downloading
Doing full clone
195M .git/objects
Checked out '0feded4f96ddca9816c6c1b8a4780cb4065747b9'.
>>> linux v4.4.19-15-ev3dev-ev3_1 Downloading
Doing shallow clone
152M .git/objects
Checked out '5bae80fb82b77919712e16970dd4d04725e69eaa'.
>>> linux ba1587b9b62c801d161897303aa6d22809485f9b Downloading
Doing full clone
683M .git/objects
Checked out 'ba1587b9b62c801d161897303aa6d22809485f9b'.
>>> linux 925e508d37c76848881a8c8f7e9b02abc5731d88 Downloading
Doing full clone
1,9G .git/objects
Checked out '925e508d37c76848881a8c8f7e9b02abc5731d88'.
>>> linux dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1 Downloading
Doing full clone
1,7G .git/objects
Checked out 'dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1'.
>>> linux 9669a50a3a8e4f33b4fe138277bc4407e1eab9b2 Downloading
Doing full clone
1,7G .git/objects
Checked out '9669a50a3a8e4f33b4fe138277bc4407e1eab9b2'.
>>> linux 59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b Downloading
Doing full clone
811M .git/objects
Checked out '59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b'.
>>> linux 8f237ebe42f2cb911245369276a6b3043c2815f2 Downloading
Doing full clone
1,3G .git/objects
Checked out '8f237ebe42f2cb911245369276a6b3043c2815f2'.
>>> linux 70d1e85a22879e27cc9e36384438d5a9793e44b0 Downloading
Doing full clone
1,1G .git/objects
Checked out '70d1e85a22879e27cc9e36384438d5a9793e44b0'.
>>> linux via_3.10.17_2.0.6 Downloading
Doing shallow clone
128M .git/objects
Checked out '201723eb5e6e6a274b999dbcef2bcaee7ebd4244'.
>>> linux efaf36531fe7b1fc15a48033e5972825c91f9fc6 Downloading
Doing full clone
1,9G .git/objects
Checked out 'efaf36531fe7b1fc15a48033e5972825c91f9fc6'.
>>> linux xilinx-v2016.2 Downloading
Doing shallow clone
151M .git/objects
Checked out 'dfb97bc345e323f2851022be24b0846183d158cc'.
test101_tag_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test101b_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test101c_tag_using_full_name_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test102_tag_can_be_preferred_over_branch_by_using_full_name (__main__.TestSuiteSupportDownloadGitRefs) ... warning: refname 'feature102' is ambiguous.
ok
test201_sha1_not_branch_head_but_in_a_branch_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test201b_sha1_not_branch_head_but_in_a_branch_does_not_use_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test202_sha1_of_branch_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test203_partial_sha1_of_branch_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test204_sha1_of_commit_pointed_by_a_tag_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test204b_sha1_of_commit_pointed_by_a_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... FAIL
test205_sha1_head_of_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test206_sha1_not_branch_head_but_in_a_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test207_partial_sha1_of_tagged_commit_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test208_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test209_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test210_partial_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test211_partial_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test212_partial_ambiguous_sha1_cannot_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... error: short SHA1 5562 is ambiguous.
fatal: ambiguous argument '5562': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
FAIL
test301_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test302_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test401_branch_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test402_branch_is_preferred_over_tag (__main__.TestSuiteSupportDownloadGitRefs) ... warning: refname 'feature402' is ambiguous.
ok
test403_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test501_tag_can_be_used_when_there_are_submodules_without_support_to_git_modules (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test502_tag_can_be_used_when_there_are_submodules_with_support_to_git_modules (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test901_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
======================================================================
FAIL: test204b_sha1_of_commit_pointed_by_a_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 109, in test204b_sha1_of_commit_pointed_by_a_tag_uses_optimized_download
self.then_i_can_see_a_shallow_fetch_was_enough()
File "/tmp/1/test/support/download/git_keywords.py", line 69, in then_i_can_see_a_shallow_fetch_was_enough
self.assertTrue(result, "A shallow fetch was not enough")
AssertionError: A shallow fetch was not enough
======================================================================
FAIL: test212_partial_ambiguous_sha1_cannot_be_used (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 164, in test212_partial_ambiguous_sha1_cannot_be_used
self.when_i_download_the_version(partial_sha1)
File "/tmp/1/test/support/download/git_keywords.py", line 46, in when_i_download_the_version
self.assertEqual(0, result, "download of version %s failed" % version)
AssertionError: download of version 5562 failed
----------------------------------------------------------------------
Ran 26 tests in 318.222s
FAILED (failures=2)
>>> aer-inject 9bd5e2c7886fca72f139cd8402488a2235957d41 Downloading
Doing full fetch
388K .git/objects
Checked out '9bd5e2c7886fca72f139cd8402488a2235957d41'.
>>> am33x-cm3 11107db2f1e9e58ee75d4fe9cc38423c9a6e4365 Downloading
Doing full fetch
5,6M .git/objects
Checked out '11107db2f1e9e58ee75d4fe9cc38423c9a6e4365'.
>>> aufs aa3d7447003abd5e3c437de52d8da2e6203390ac Downloading
Doing full fetch
4,6M .git/objects
Checked out 'aa3d7447003abd5e3c437de52d8da2e6203390ac'.
>>> aufs-util 3ed045ce3bbb05b3583308ee2de0a319d17f5011 Downloading
Doing full fetch
328K .git/objects
Checked out '3ed045ce3bbb05b3583308ee2de0a319d17f5011'.
>>> dtv-scan-tables ceb11833b35f05813b1f0397a60e0f3b99430aab Downloading
Doing full fetch
1,8M .git/objects
Checked out 'ceb11833b35f05813b1f0397a60e0f3b99430aab'.
>>> expedite ffa005ea3de26b4219f32c285cb1665bb1366163 Downloading
Doing full fetch
6,9M .git/objects
Checked out 'ffa005ea3de26b4219f32c285cb1665bb1366163'.
>>> f2fs-tools v1.6.1 Downloading
Doing shallow fetch, using 'refs/tags/v1.6.1' to get 'v1.6.1'
444K .git/objects
Checked out '759df520ae0be9753b5ccf095a6ea19d45d09c01'.
>>> host-netsurf-buildsystem 7574b41345968b5f7e9ca5875faccb1478ce0555 Downloading
Doing full fetch
2,1M .git/objects
Checked out '7574b41345968b5f7e9ca5875faccb1478ce0555'.
>>> host-pseudo 45eca34c754d416a38bee90fb2d3c110a0b6cc5f Downloading
Doing full fetch
716K .git/objects
Checked out '45eca34c754d416a38bee90fb2d3c110a0b6cc5f'.
>>> host-squashfs 9c1db6d13a51a2e009f0027ef336ce03624eac0d Downloading
Doing full fetch
1,9M .git/objects
Checked out '9c1db6d13a51a2e009f0027ef336ce03624eac0d'.
>>> host-vboot-utils bbdd62f9b030db7ad8eef789aaf58a7ff9a25656 Downloading
Doing full fetch
40M .git/objects
Checked out 'bbdd62f9b030db7ad8eef789aaf58a7ff9a25656'.
>>> kismet Kismet-2014-02-R1 Downloading
Doing shallow fetch, using 'refs/tags/Kismet-2014-02-R1' to get 'Kismet-2014-02-R1'
Doing full fetch
36M .git/objects
Checked out '2a7c6f1d231a08fb7b6e1831360f050fc20c855e'.
>>> kvmtool bed2bd9e1fbef5819090feeada7b86eed97ca5e2 Downloading
Doing full fetch
1,8M .git/objects
Checked out 'bed2bd9e1fbef5819090feeada7b86eed97ca5e2'.
>>> kvm-unit-tests 5731572b2ac23eb410732110b93425b5bb7f27dd Downloading
Doing full fetch
912K .git/objects
Checked out '5731572b2ac23eb410732110b93425b5bb7f27dd'.
>>> libbroadvoice f65b0f50c8c767229fbf1758370880abc0d78564 Downloading
Doing full fetch
212K .git/objects
Checked out 'f65b0f50c8c767229fbf1758370880abc0d78564'.
>>> libcodec2 392a55b4f3f8ad30d845ac6ae35e8b27343bb944 Downloading
Doing full fetch
3,1M .git/objects
Checked out '392a55b4f3f8ad30d845ac6ae35e8b27343bb944'.
>>> libg7221 dbfc29d4806ecdace50379a2f4d68a992a6fec34 Downloading
Doing full fetch
276K .git/objects
Checked out 'dbfc29d4806ecdace50379a2f4d68a992a6fec34'.
>>> libilbc 829b08c7902ceb87a261279fabb36b6d523c6e07 Downloading
Doing full fetch
800K .git/objects
Checked out '829b08c7902ceb87a261279fabb36b6d523c6e07'.
>>> libsilk 4268a02240c35c6055b0f237c46b09b2dcf79e45 Downloading
Doing full fetch
724K .git/objects
Checked out '4268a02240c35c6055b0f237c46b09b2dcf79e45'.
>>> libsoundtouch 010a91a59071c7fefd316fca62c0d980ec85b4b1 Downloading
Doing full fetch
168K .git/objects
Checked out '010a91a59071c7fefd316fca62c0d980ec85b4b1'.
>>> libsvgtiny ea9d99fc8b231c22d06168135e181d61f4eb2f06 Downloading
Doing full fetch
3,3M .git/objects
Checked out 'ea9d99fc8b231c22d06168135e181d61f4eb2f06'.
>>> libyuv 1ebf86795cb213a37f06eb1ef3713cff080568ea Downloading
Doing full fetch
3,0M .git/objects
Checked out '1ebf86795cb213a37f06eb1ef3713cff080568ea'.
>>> linux-firmware a179db97914da5e650c21ba8f9b0bae04a0f8a41 Downloading
Doing full fetch
98M .git/objects
Checked out 'a179db97914da5e650c21ba8f9b0bae04a0f8a41'.
>>> mcelog v111 Downloading
Doing shallow fetch, using 'refs/tags/v111' to get 'v111'
332K .git/objects
Checked out '96580a426f7ba92598fd7a3667cc2b78fc8d162f'.
>>> opkg v0.3.1 Downloading
Doing shallow fetch, using 'refs/tags/v0.3.1' to get 'v0.3.1'
296K .git/objects
Checked out '3ce3625c8924552699ae57d0e453a7dcc7d388b5'.
>>> qt-webkit-kiosk 7fe40a350abfbe5ec194e7c6c740f7099e8704cd Downloading
Doing full fetch
232K .git/objects
Checked out '7fe40a350abfbe5ec194e7c6c740f7099e8704cd'.
>>> sunxi-mali d343311efc8db166d8371b28494f0f27b6a5872 Downloading
Doing full fetch
116K .git/objects
Checked out 'd343311efc8db166d8371b28494f0f27b6a58724'.
>>> trace-cmd trace-cmd-v2.6 Downloading
Doing shallow fetch, using 'refs/tags/trace-cmd-v2.6' to get 'trace-cmd-v2.6'
1,9M .git/objects
Checked out '9be5d74805830a291615f2f34a27c903f6a37b1e'.
>>> uemacs 8841922689769960fa074fbb053cb8507f2f3ed9 Downloading
Doing full fetch
472K .git/objects
Checked out '8841922689769960fa074fbb053cb8507f2f3ed9'.
>>> uhttpd 59e0c739634f46a164d939e54416287b91ff8a9b Downloading
Doing full fetch
180K .git/objects
Checked out '59e0c739634f46a164d939e54416287b91ff8a9b'.
>>> arm-trusted-firmware v1.2 Downloading
Doing shallow fetch, using 'refs/tags/v1.2' to get 'v1.2'
2,0M .git/objects
Checked out 'd0c104e1e1ad0102f0f4c70997b7ee6e6fbbe273'.
>>> at91bootstrap3 v3.8.6 Downloading
Doing shallow fetch, using 'refs/tags/v3.8.6' to get 'v3.8.6'
524K .git/objects
Checked out '7ca51179bb94dc48415b77db8f3757479d59cac1'.
>>> at91bootstrap3 v3.8.7 Downloading
Doing shallow fetch, using 'refs/tags/v3.8.7' to get 'v3.8.7'
524K .git/objects
Checked out '68b49c41f263c71ede046d99a8c5dd224b75903b'.
>>> uboot rel_socfpga_v2013.01.01_14.02.02 Downloading
Doing shallow fetch, using 'refs/tags/rel_socfpga_v2013.01.01_14.02.02' to get 'rel_socfpga_v2013.01.01_14.02.02'
Doing full fetch
91M .git/objects
Checked out 'e0d19aa80086b99a1dacb320eb12cb20e577aebc'.
>>> uboot rel_acds13.0sp1 Downloading
Doing shallow fetch, using 'refs/tags/rel_acds13.0sp1' to get 'rel_acds13.0sp1'
Doing full fetch
91M .git/objects
Checked out '191737ccb1214dfd02a3b279549ad4bc0e5218c1'.
>>> uboot linux4sam_5.5 Downloading
Doing shallow fetch, using 'refs/tags/linux4sam_5.5' to get 'linux4sam_5.5'
16M .git/objects
Checked out '801b789cb0eba61596f23d89f31db63767d84533'.
>>> uboot a4f583551d0025eb957ee5c9cb68657a429e4914 Downloading
Doing full fetch
61M .git/objects
Checked out 'a4f583551d0025eb957ee5c9cb68657a429e4914'.
>>> uboot rel_imx_4.1.15_2.0.0_ga Downloading
Doing shallow fetch, using 'refs/tags/rel_imx_4.1.15_2.0.0_ga' to get 'rel_imx_4.1.15_2.0.0_ga'
17M .git/objects
Checked out '0ec2a019117bb2d59b9672a145b4684313d92782'.
>>> uboot 1ec799cec97574a9838bc25b286484e579a41652 Downloading
Doing full fetch
107M .git/objects
Checked out '1ec799cec97574a9838bc25b286484e579a41652'.
>>> uboot a035d2673a90143a1a74557503b2e137b1447ae6 Downloading
Doing full fetch
83M .git/objects
Checked out 'a035d2673a90143a1a74557503b2e137b1447ae6'.
>>> uboot 1ef4a29e8cea0239411dde64f9617ad76248fd02 Downloading
Doing full fetch
108M .git/objects
Checked out '1ef4a29e8cea0239411dde64f9617ad76248fd02'.
>>> uboot via_3.10.17_2.0.6 Downloading
Doing shallow fetch, using 'refs/heads/via_3.10.17_2.0.6' to get 'via_3.10.17_2.0.6'
16M .git/objects
Checked out '4ddf7448ff54261c4730a8b3f06a31f20f8370f6'.
>>> uboot xilinx-v2016.2 Downloading
Doing shallow fetch, using 'refs/tags/xilinx-v2016.2' to get 'xilinx-v2016.2'
16M .git/objects
Checked out '0daf88c7f8c9085a81336a0ad2dd3bcc84c7a18a'.
>>> linux rel_socfpga-3.13_14.02.02 Downloading
Doing shallow fetch, using 'refs/tags/rel_socfpga-3.13_14.02.02' to get 'rel_socfpga-3.13_14.02.02'
Doing full fetch
994M .git/objects
Checked out 'bb0bb0a2a05443edef7af9f7de9fc8c3f36f01cb'.
>>> linux linux4sam_5.5 Downloading
Doing shallow fetch, using 'refs/tags/linux4sam_5.5' to get 'linux4sam_5.5'
150M .git/objects
Checked out '061f02b7aa3c26f02cd01be1ca0e4812192ba9a2'.
>>> linux 52c4aa7cdb93d61f8008f380135beaf7b8fa6593 Downloading
Doing full fetch
1,1G .git/objects
Checked out '52c4aa7cdb93d61f8008f380135beaf7b8fa6593'.
>>> linux fbf929bc733b82b15f6996d4262a45870f19d214 Downloading
Doing full fetch
1,5G .git/objects
Checked out 'fbf929bc733b82b15f6996d4262a45870f19d214'.
>>> linux ccb89e9b5657b4911c16d08e1581121222ee12c4 Downloading
Doing full fetch
1,8G .git/objects
Checked out 'ccb89e9b5657b4911c16d08e1581121222ee12c4'.
>>> linux rel_imx_4.1.15_2.0.0_ga Downloading
Doing shallow fetch, using 'refs/tags/rel_imx_4.1.15_2.0.0_ga' to get 'rel_imx_4.1.15_2.0.0_ga'
146M .git/objects
Checked out 'b63f3f52cb393e3287352cf63f0caef31a33ab63'.
>>> linux 0feded4f96ddca9816c6c1b8a4780cb4065747b9 Downloading
Doing full fetch
195M .git/objects
Checked out '0feded4f96ddca9816c6c1b8a4780cb4065747b9'.
>>> linux v4.4.19-15-ev3dev-ev3_1 Downloading
Doing shallow fetch, using 'refs/tags/v4.4.19-15-ev3dev-ev3_1' to get 'v4.4.19-15-ev3dev-ev3_1'
152M .git/objects
Checked out '5bae80fb82b77919712e16970dd4d04725e69eaa'.
>>> linux ba1587b9b62c801d161897303aa6d22809485f9b Downloading
Doing full fetch
683M .git/objects
Checked out 'ba1587b9b62c801d161897303aa6d22809485f9b'.
>>> linux 925e508d37c76848881a8c8f7e9b02abc5731d88 Downloading
Doing full fetch
1,9G .git/objects
Checked out '925e508d37c76848881a8c8f7e9b02abc5731d88'.
>>> linux dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1 Downloading
Doing full fetch
1,7G .git/objects
Checked out 'dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1'.
>>> linux 9669a50a3a8e4f33b4fe138277bc4407e1eab9b2 Downloading
Doing full fetch
1,7G .git/objects
Checked out '9669a50a3a8e4f33b4fe138277bc4407e1eab9b2'.
>>> linux 59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b Downloading
Doing full fetch
811M .git/objects
Checked out '59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b'.
>>> linux 8f237ebe42f2cb911245369276a6b3043c2815f2 Downloading
Doing full fetch
1,3G .git/objects
Checked out '8f237ebe42f2cb911245369276a6b3043c2815f2'.
>>> linux 70d1e85a22879e27cc9e36384438d5a9793e44b0 Downloading
Doing full fetch
1,1G .git/objects
Checked out '70d1e85a22879e27cc9e36384438d5a9793e44b0'.
>>> linux via_3.10.17_2.0.6 Downloading
Doing shallow fetch, using 'refs/heads/via_3.10.17_2.0.6' to get 'via_3.10.17_2.0.6'
128M .git/objects
Checked out '201723eb5e6e6a274b999dbcef2bcaee7ebd4244'.
>>> linux efaf36531fe7b1fc15a48033e5972825c91f9fc6 Downloading
Doing full fetch
1,9G .git/objects
Checked out 'efaf36531fe7b1fc15a48033e5972825c91f9fc6'.
>>> linux xilinx-v2016.2 Downloading
Doing shallow fetch, using 'refs/tags/xilinx-v2016.2' to get 'xilinx-v2016.2'
151M .git/objects
Checked out 'dfb97bc345e323f2851022be24b0846183d158cc'.
test101_tag_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test101b_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test101c_tag_using_full_name_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test102_tag_can_be_preferred_over_branch_by_using_full_name (__main__.TestSuiteSupportDownloadGitRefs) ... warning: refname 'feature102' is ambiguous.
ok
test201_sha1_not_branch_head_but_in_a_branch_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test201b_sha1_not_branch_head_but_in_a_branch_does_not_use_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test202_sha1_of_branch_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test203_partial_sha1_of_branch_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test204_sha1_of_commit_pointed_by_a_tag_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test204b_sha1_of_commit_pointed_by_a_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test205_sha1_head_of_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test206_sha1_not_branch_head_but_in_a_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test207_partial_sha1_of_tagged_commit_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test208_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test209_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test210_partial_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test211_partial_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test212_partial_ambiguous_sha1_cannot_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... error: short SHA1 2eaf is ambiguous.
fatal: ambiguous argument '2eaf': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
FAIL
test301_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test302_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test401_branch_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test402_branch_is_preferred_over_tag (__main__.TestSuiteSupportDownloadGitRefs) ... warning: refname 'feature402' is ambiguous.
ok
test403_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test501_tag_can_be_used_when_there_are_submodules_without_support_to_git_modules (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test502_tag_can_be_used_when_there_are_submodules_with_support_to_git_modules (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test901_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
======================================================================
FAIL: test212_partial_ambiguous_sha1_cannot_be_used (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 164, in test212_partial_ambiguous_sha1_cannot_be_used
self.when_i_download_the_version(partial_sha1)
File "/tmp/2/test/support/download/git_keywords.py", line 46, in when_i_download_the_version
self.assertEqual(0, result, "download of version %s failed" % version)
AssertionError: download of version 2eaf failed
----------------------------------------------------------------------
Ran 26 tests in 321.413s
FAILED (failures=1)
>>> aer-inject 9bd5e2c7886fca72f139cd8402488a2235957d41 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '9bd5e2c7886fca72f139cd8402488a2235957d41'
152K .git/objects
Checked out '9bd5e2c7886fca72f139cd8402488a2235957d41'.
>>> am33x-cm3 11107db2f1e9e58ee75d4fe9cc38423c9a6e4365 Downloading
Doing shallow fetch, using 'refs/tags/v05.00.00.02' to get '11107db2f1e9e58ee75d4fe9cc38423c9a6e4365'
Doing full fetch
5,6M .git/objects
Checked out '11107db2f1e9e58ee75d4fe9cc38423c9a6e4365'.
>>> aufs aa3d7447003abd5e3c437de52d8da2e6203390ac Downloading
Doing shallow fetch, using 'refs/heads/aufs3.0' to get 'aa3d7447003abd5e3c437de52d8da2e6203390ac'
264K .git/objects
Checked out 'aa3d7447003abd5e3c437de52d8da2e6203390ac'.
>>> aufs-util 3ed045ce3bbb05b3583308ee2de0a319d17f5011 Downloading
Doing shallow fetch, using 'refs/heads/aufs3.0' to get '3ed045ce3bbb05b3583308ee2de0a319d17f5011'
532K .git/objects
Checked out '3ed045ce3bbb05b3583308ee2de0a319d17f5011'.
>>> dtv-scan-tables ceb11833b35f05813b1f0397a60e0f3b99430aab Downloading
Doing full fetch
1,8M .git/objects
Checked out 'ceb11833b35f05813b1f0397a60e0f3b99430aab'.
>>> expedite ffa005ea3de26b4219f32c285cb1665bb1366163 Downloading
Doing full fetch
6,9M .git/objects
Checked out 'ffa005ea3de26b4219f32c285cb1665bb1366163'.
>>> f2fs-tools v1.6.1 Downloading
Doing shallow fetch, using 'refs/tags/v1.6.1' to get 'v1.6.1'
444K .git/objects
Checked out '759df520ae0be9753b5ccf095a6ea19d45d09c01'.
>>> host-netsurf-buildsystem 7574b41345968b5f7e9ca5875faccb1478ce0555 Downloading
Doing full fetch
2,1M .git/objects
Checked out '7574b41345968b5f7e9ca5875faccb1478ce0555'.
>>> host-pseudo 45eca34c754d416a38bee90fb2d3c110a0b6cc5f Downloading
Doing full fetch
716K .git/objects
Checked out '45eca34c754d416a38bee90fb2d3c110a0b6cc5f'.
>>> host-squashfs 9c1db6d13a51a2e009f0027ef336ce03624eac0d Downloading
Doing full fetch
2,1M .git/objects
Checked out '9c1db6d13a51a2e009f0027ef336ce03624eac0d'.
>>> host-vboot-utils bbdd62f9b030db7ad8eef789aaf58a7ff9a25656 Downloading
Doing shallow fetch, using 'refs/heads/stabilize-7647.74.B' to get 'bbdd62f9b030db7ad8eef789aaf58a7ff9a25656'
21M .git/objects
Checked out 'bbdd62f9b030db7ad8eef789aaf58a7ff9a25656'.
>>> kismet Kismet-2014-02-R1 Downloading
Doing shallow fetch, using 'refs/tags/Kismet-2014-02-R1' to get 'Kismet-2014-02-R1'
Doing full fetch
36M .git/objects
Checked out '2a7c6f1d231a08fb7b6e1831360f050fc20c855e'.
>>> kvmtool bed2bd9e1fbef5819090feeada7b86eed97ca5e2 Downloading
Doing full fetch
1,8M .git/objects
Checked out 'bed2bd9e1fbef5819090feeada7b86eed97ca5e2'.
>>> kvm-unit-tests 5731572b2ac23eb410732110b93425b5bb7f27dd Downloading
Doing full fetch
912K .git/objects
Checked out '5731572b2ac23eb410732110b93425b5bb7f27dd'.
>>> libbroadvoice f65b0f50c8c767229fbf1758370880abc0d78564 Downloading
Doing shallow fetch, using 'refs/heads/master' to get 'f65b0f50c8c767229fbf1758370880abc0d78564'
196K .git/objects
Checked out 'f65b0f50c8c767229fbf1758370880abc0d78564'.
>>> libcodec2 392a55b4f3f8ad30d845ac6ae35e8b27343bb944 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '392a55b4f3f8ad30d845ac6ae35e8b27343bb944'
3,1M .git/objects
Checked out '392a55b4f3f8ad30d845ac6ae35e8b27343bb944'.
>>> libg7221 dbfc29d4806ecdace50379a2f4d68a992a6fec34 Downloading
Doing shallow fetch, using 'refs/heads/master' to get 'dbfc29d4806ecdace50379a2f4d68a992a6fec34'
268K .git/objects
Checked out 'dbfc29d4806ecdace50379a2f4d68a992a6fec34'.
>>> libilbc 829b08c7902ceb87a261279fabb36b6d523c6e07 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '829b08c7902ceb87a261279fabb36b6d523c6e07'
792K .git/objects
Checked out '829b08c7902ceb87a261279fabb36b6d523c6e07'.
>>> libsilk 4268a02240c35c6055b0f237c46b09b2dcf79e45 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '4268a02240c35c6055b0f237c46b09b2dcf79e45'
720K .git/objects
Checked out '4268a02240c35c6055b0f237c46b09b2dcf79e45'.
>>> libsoundtouch 010a91a59071c7fefd316fca62c0d980ec85b4b1 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '010a91a59071c7fefd316fca62c0d980ec85b4b1'
164K .git/objects
Checked out '010a91a59071c7fefd316fca62c0d980ec85b4b1'.
>>> libsvgtiny ea9d99fc8b231c22d06168135e181d61f4eb2f06 Downloading
Doing full fetch
3,3M .git/objects
Checked out 'ea9d99fc8b231c22d06168135e181d61f4eb2f06'.
>>> libyuv 1ebf86795cb213a37f06eb1ef3713cff080568ea Downloading
Doing shallow fetch, using 'refs/heads/master' to get '1ebf86795cb213a37f06eb1ef3713cff080568ea'
348K .git/objects
Checked out '1ebf86795cb213a37f06eb1ef3713cff080568ea'.
>>> linux-firmware a179db97914da5e650c21ba8f9b0bae04a0f8a41 Downloading
Doing full fetch
98M .git/objects
Checked out 'a179db97914da5e650c21ba8f9b0bae04a0f8a41'.
>>> mcelog v111 Downloading
Doing shallow fetch, using 'refs/tags/v111' to get 'v111'
332K .git/objects
Checked out '96580a426f7ba92598fd7a3667cc2b78fc8d162f'.
>>> opkg v0.3.1 Downloading
Doing shallow fetch, using 'refs/tags/v0.3.1' to get 'v0.3.1'
296K .git/objects
Checked out '3ce3625c8924552699ae57d0e453a7dcc7d388b5'.
>>> qt-webkit-kiosk 7fe40a350abfbe5ec194e7c6c740f7099e8704cd Downloading
Doing shallow fetch, using 'refs/tags/1.99.3' to get '7fe40a350abfbe5ec194e7c6c740f7099e8704cd'
512K .git/objects
Checked out '7fe40a350abfbe5ec194e7c6c740f7099e8704cd'.
>>> sunxi-mali d343311efc8db166d8371b28494f0f27b6a5872 Downloading
Doing full fetch
116K .git/objects
Checked out 'd343311efc8db166d8371b28494f0f27b6a58724'.
>>> trace-cmd trace-cmd-v2.6 Downloading
Doing shallow fetch, using 'refs/tags/trace-cmd-v2.6' to get 'trace-cmd-v2.6'
1,9M .git/objects
Checked out '9be5d74805830a291615f2f34a27c903f6a37b1e'.
>>> uemacs 8841922689769960fa074fbb053cb8507f2f3ed9 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '8841922689769960fa074fbb053cb8507f2f3ed9'
584K .git/objects
Checked out '8841922689769960fa074fbb053cb8507f2f3ed9'.
>>> uhttpd 59e0c739634f46a164d939e54416287b91ff8a9b Downloading
Doing full fetch
180K .git/objects
Checked out '59e0c739634f46a164d939e54416287b91ff8a9b'.
>>> arm-trusted-firmware v1.2 Downloading
Doing shallow fetch, using 'refs/tags/v1.2' to get 'v1.2'
2,0M .git/objects
Checked out 'd0c104e1e1ad0102f0f4c70997b7ee6e6fbbe273'.
>>> at91bootstrap3 v3.8.6 Downloading
Doing shallow fetch, using 'refs/tags/v3.8.6' to get 'v3.8.6'
524K .git/objects
Checked out '7ca51179bb94dc48415b77db8f3757479d59cac1'.
>>> at91bootstrap3 v3.8.7 Downloading
Doing shallow fetch, using 'refs/tags/v3.8.7' to get 'v3.8.7'
524K .git/objects
Checked out '68b49c41f263c71ede046d99a8c5dd224b75903b'.
>>> uboot rel_socfpga_v2013.01.01_14.02.02 Downloading
Doing shallow fetch, using 'refs/tags/rel_socfpga_v2013.01.01_14.02.02' to get 'rel_socfpga_v2013.01.01_14.02.02'
Doing full fetch
91M .git/objects
Checked out 'e0d19aa80086b99a1dacb320eb12cb20e577aebc'.
>>> uboot rel_acds13.0sp1 Downloading
Doing shallow fetch, using 'refs/tags/rel_acds13.0sp1' to get 'rel_acds13.0sp1'
Doing full fetch
91M .git/objects
Checked out '191737ccb1214dfd02a3b279549ad4bc0e5218c1'.
>>> uboot linux4sam_5.5 Downloading
Doing shallow fetch, using 'refs/tags/linux4sam_5.5' to get 'linux4sam_5.5'
16M .git/objects
Checked out '801b789cb0eba61596f23d89f31db63767d84533'.
>>> uboot a4f583551d0025eb957ee5c9cb68657a429e4914 Downloading
Doing full fetch
61M .git/objects
Checked out 'a4f583551d0025eb957ee5c9cb68657a429e4914'.
>>> uboot rel_imx_4.1.15_2.0.0_ga Downloading
Doing shallow fetch, using 'refs/tags/rel_imx_4.1.15_2.0.0_ga' to get 'rel_imx_4.1.15_2.0.0_ga'
17M .git/objects
Checked out '0ec2a019117bb2d59b9672a145b4684313d92782'.
>>> uboot 1ec799cec97574a9838bc25b286484e579a41652 Downloading
Doing shallow fetch, using 'refs/tags/s905_5.1.1_v2.0' to get '1ec799cec97574a9838bc25b286484e579a41652'
16M .git/objects
Checked out '1ec799cec97574a9838bc25b286484e579a41652'.
>>> uboot a035d2673a90143a1a74557503b2e137b1447ae6 Downloading
Doing shallow fetch, using 'refs/heads/master' to get 'a035d2673a90143a1a74557503b2e137b1447ae6'
16M .git/objects
Checked out 'a035d2673a90143a1a74557503b2e137b1447ae6'.
>>> uboot 1ef4a29e8cea0239411dde64f9617ad76248fd02 Downloading
Doing shallow fetch, using 'refs/tags/Colibri_iMX6_LinuxImageV2.5Beta2_20151106' to get '1ef4a29e8cea0239411dde64f9617ad76248fd02'
Doing full fetch
108M .git/objects
Checked out '1ef4a29e8cea0239411dde64f9617ad76248fd02'.
>>> uboot via_3.10.17_2.0.6 Downloading
Doing shallow fetch, using 'refs/heads/via_3.10.17_2.0.6' to get 'via_3.10.17_2.0.6'
16M .git/objects
Checked out '4ddf7448ff54261c4730a8b3f06a31f20f8370f6'.
>>> uboot xilinx-v2016.2 Downloading
Doing shallow fetch, using 'refs/tags/xilinx-v2016.2' to get 'xilinx-v2016.2'
16M .git/objects
Checked out '0daf88c7f8c9085a81336a0ad2dd3bcc84c7a18a'.
>>> linux rel_socfpga-3.13_14.02.02 Downloading
Doing shallow fetch, using 'refs/tags/rel_socfpga-3.13_14.02.02' to get 'rel_socfpga-3.13_14.02.02'
Doing full fetch
994M .git/objects
Checked out 'bb0bb0a2a05443edef7af9f7de9fc8c3f36f01cb'.
>>> linux linux4sam_5.5 Downloading
Doing shallow fetch, using 'refs/tags/linux4sam_5.5' to get 'linux4sam_5.5'
150M .git/objects
Checked out '061f02b7aa3c26f02cd01be1ca0e4812192ba9a2'.
>>> linux 52c4aa7cdb93d61f8008f380135beaf7b8fa6593 Downloading
Doing shallow fetch, using 'refs/heads/processor-sdk-linux-02.00.00' to get '52c4aa7cdb93d61f8008f380135beaf7b8fa6593'
144M .git/objects
Checked out '52c4aa7cdb93d61f8008f380135beaf7b8fa6593'.
>>> linux fbf929bc733b82b15f6996d4262a45870f19d214 Downloading
Doing shallow fetch, using 'refs/heads/ci20-v3.18' to get 'fbf929bc733b82b15f6996d4262a45870f19d214'
139M .git/objects
Checked out 'fbf929bc733b82b15f6996d4262a45870f19d214'.
>>> linux ccb89e9b5657b4911c16d08e1581121222ee12c4 Downloading
Doing full fetch
1,8G .git/objects
Checked out 'ccb89e9b5657b4911c16d08e1581121222ee12c4'.
>>> linux rel_imx_4.1.15_2.0.0_ga Downloading
Doing shallow fetch, using 'refs/tags/rel_imx_4.1.15_2.0.0_ga' to get 'rel_imx_4.1.15_2.0.0_ga'
146M .git/objects
Checked out 'b63f3f52cb393e3287352cf63f0caef31a33ab63'.
>>> linux 0feded4f96ddca9816c6c1b8a4780cb4065747b9 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '0feded4f96ddca9816c6c1b8a4780cb4065747b9'
138M .git/objects
Checked out '0feded4f96ddca9816c6c1b8a4780cb4065747b9'.
>>> linux v4.4.19-15-ev3dev-ev3_1 Downloading
Doing shallow fetch, using 'refs/tags/v4.4.19-15-ev3dev-ev3_1' to get 'v4.4.19-15-ev3dev-ev3_1'
152M .git/objects
Checked out '5bae80fb82b77919712e16970dd4d04725e69eaa'.
>>> linux ba1587b9b62c801d161897303aa6d22809485f9b Downloading
Doing full fetch
683M .git/objects
Checked out 'ba1587b9b62c801d161897303aa6d22809485f9b'.
>>> linux 925e508d37c76848881a8c8f7e9b02abc5731d88 Downloading
Doing shallow fetch, using 'refs/tags/jenkins-deb_s905_kernel-87' to get '925e508d37c76848881a8c8f7e9b02abc5731d88'
142M .git/objects
Checked out '925e508d37c76848881a8c8f7e9b02abc5731d88'.
>>> linux dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1 Downloading
Doing full fetch
1,7G .git/objects
Checked out 'dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1'.
>>> linux 9669a50a3a8e4f33b4fe138277bc4407e1eab9b2 Downloading
Doing full fetch
1,7G .git/objects
Checked out '9669a50a3a8e4f33b4fe138277bc4407e1eab9b2'.
>>> linux 59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b Downloading
Doing shallow fetch, using 'refs/heads/master' to get '59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b'
134M .git/objects
Checked out '59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b'.
>>> linux 8f237ebe42f2cb911245369276a6b3043c2815f2 Downloading
Doing full fetch
1,3G .git/objects
Checked out '8f237ebe42f2cb911245369276a6b3043c2815f2'.
>>> linux 70d1e85a22879e27cc9e36384438d5a9793e44b0 Downloading
Doing full fetch
1,1G .git/objects
Checked out '70d1e85a22879e27cc9e36384438d5a9793e44b0'.
>>> linux via_3.10.17_2.0.6 Downloading
Doing shallow fetch, using 'refs/heads/via_3.10.17_2.0.6' to get 'via_3.10.17_2.0.6'
128M .git/objects
Checked out '201723eb5e6e6a274b999dbcef2bcaee7ebd4244'.
>>> linux efaf36531fe7b1fc15a48033e5972825c91f9fc6 Downloading
Doing full fetch
1,9G .git/objects
Checked out 'efaf36531fe7b1fc15a48033e5972825c91f9fc6'.
>>> linux xilinx-v2016.2 Downloading
Doing shallow fetch, using 'refs/tags/xilinx-v2016.2' to get 'xilinx-v2016.2'
151M .git/objects
Checked out 'dfb97bc345e323f2851022be24b0846183d158cc'.
test101_tag_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test101b_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test101c_tag_using_full_name_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test102_tag_can_be_preferred_over_branch_by_using_full_name (__main__.TestSuiteSupportDownloadGitRefs) ... warning: refname 'feature102' is ambiguous.
ok
test201_sha1_not_branch_head_but_in_a_branch_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test201b_sha1_not_branch_head_but_in_a_branch_does_not_use_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test202_sha1_of_branch_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test203_partial_sha1_of_branch_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test204_sha1_of_commit_pointed_by_a_tag_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test204b_sha1_of_commit_pointed_by_a_tag_uses_optimized_download (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test205_sha1_head_of_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test206_sha1_not_branch_head_but_in_a_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test207_partial_sha1_of_tagged_commit_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test208_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test209_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test210_partial_sha1_of_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test211_partial_sha1_of_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test212_partial_ambiguous_sha1_cannot_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... error: short SHA1 9127 is ambiguous.
fatal: ambiguous argument '9127': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
FAIL
test301_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test302_merged_special_ref_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test401_branch_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test402_branch_is_preferred_over_tag (__main__.TestSuiteSupportDownloadGitRefs) ... warning: refname 'feature402' is ambiguous.
ok
test403_branch_with_slash_in_the_name_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test501_tag_can_be_used_when_there_are_submodules_without_support_to_git_modules (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test502_tag_can_be_used_when_there_are_submodules_with_support_to_git_modules (__main__.TestSuiteSupportDownloadGitRefs) ... ok
test901_head_can_be_used (__main__.TestSuiteSupportDownloadGitRefs) ... ok
======================================================================
FAIL: test212_partial_ambiguous_sha1_cannot_be_used (__main__.TestSuiteSupportDownloadGitRefs)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/support/download/git.py", line 164, in test212_partial_ambiguous_sha1_cannot_be_used
self.when_i_download_the_version(partial_sha1)
File "/tmp/3/test/support/download/git_keywords.py", line 46, in when_i_download_the_version
self.assertEqual(0, result, "download of version %s failed" % version)
AssertionError: download of version 9127 failed
----------------------------------------------------------------------
Ran 26 tests in 337.978s
FAILED (failures=1)
>>> aer-inject 9bd5e2c7886fca72f139cd8402488a2235957d41 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '9bd5e2c7886fca72f139cd8402488a2235957d41'
152K .git/objects
Checked out '9bd5e2c7886fca72f139cd8402488a2235957d41'.
>>> am33x-cm3 11107db2f1e9e58ee75d4fe9cc38423c9a6e4365 Downloading
Doing shallow fetch, using 'refs/tags/v05.00.00.02' to get '11107db2f1e9e58ee75d4fe9cc38423c9a6e4365'
Doing shallow fetch of all branches
Doing full fetch
5,6M .git/objects
Checked out '11107db2f1e9e58ee75d4fe9cc38423c9a6e4365'.
>>> aufs aa3d7447003abd5e3c437de52d8da2e6203390ac Downloading
Doing shallow fetch, using 'refs/heads/aufs3.0' to get 'aa3d7447003abd5e3c437de52d8da2e6203390ac'
264K .git/objects
Checked out 'aa3d7447003abd5e3c437de52d8da2e6203390ac'.
>>> aufs-util 3ed045ce3bbb05b3583308ee2de0a319d17f5011 Downloading
Doing shallow fetch, using 'refs/heads/aufs3.0' to get '3ed045ce3bbb05b3583308ee2de0a319d17f5011'
532K .git/objects
Checked out '3ed045ce3bbb05b3583308ee2de0a319d17f5011'.
>>> dtv-scan-tables ceb11833b35f05813b1f0397a60e0f3b99430aab Downloading
Doing shallow fetch of all branches
Doing full fetch
1,8M .git/objects
Checked out 'ceb11833b35f05813b1f0397a60e0f3b99430aab'.
>>> expedite ffa005ea3de26b4219f32c285cb1665bb1366163 Downloading
Doing shallow fetch of all branches
6,8M .git/objects
Checked out 'ffa005ea3de26b4219f32c285cb1665bb1366163'.
>>> f2fs-tools v1.6.1 Downloading
Doing shallow fetch, using 'refs/tags/v1.6.1' to get 'v1.6.1'
444K .git/objects
Checked out '759df520ae0be9753b5ccf095a6ea19d45d09c01'.
>>> host-netsurf-buildsystem 7574b41345968b5f7e9ca5875faccb1478ce0555 Downloading
Doing shallow fetch of all branches
Doing full fetch
2,1M .git/objects
Checked out '7574b41345968b5f7e9ca5875faccb1478ce0555'.
>>> host-pseudo 45eca34c754d416a38bee90fb2d3c110a0b6cc5f Downloading
Doing shallow fetch of all branches
716K .git/objects
Checked out '45eca34c754d416a38bee90fb2d3c110a0b6cc5f'.
>>> host-squashfs 9c1db6d13a51a2e009f0027ef336ce03624eac0d Downloading
Doing shallow fetch of all branches
564K .git/objects
Checked out '9c1db6d13a51a2e009f0027ef336ce03624eac0d'.
>>> host-vboot-utils bbdd62f9b030db7ad8eef789aaf58a7ff9a25656 Downloading
Doing shallow fetch, using 'refs/heads/stabilize-7647.74.B' to get 'bbdd62f9b030db7ad8eef789aaf58a7ff9a25656'
21M .git/objects
Checked out 'bbdd62f9b030db7ad8eef789aaf58a7ff9a25656'.
>>> kismet Kismet-2014-02-R1 Downloading
Doing shallow fetch, using 'refs/tags/Kismet-2014-02-R1' to get 'Kismet-2014-02-R1'
Doing full fetch
36M .git/objects
Checked out '2a7c6f1d231a08fb7b6e1831360f050fc20c855e'.
>>> kvmtool bed2bd9e1fbef5819090feeada7b86eed97ca5e2 Downloading
Doing shallow fetch of all branches
464K .git/objects
Checked out 'bed2bd9e1fbef5819090feeada7b86eed97ca5e2'.
>>> kvm-unit-tests 5731572b2ac23eb410732110b93425b5bb7f27dd Downloading
Doing shallow fetch of all branches
500K .git/objects
Checked out '5731572b2ac23eb410732110b93425b5bb7f27dd'.
>>> libbroadvoice f65b0f50c8c767229fbf1758370880abc0d78564 Downloading
Doing shallow fetch, using 'refs/heads/master' to get 'f65b0f50c8c767229fbf1758370880abc0d78564'
196K .git/objects
Checked out 'f65b0f50c8c767229fbf1758370880abc0d78564'.
>>> libcodec2 392a55b4f3f8ad30d845ac6ae35e8b27343bb944 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '392a55b4f3f8ad30d845ac6ae35e8b27343bb944'
3,1M .git/objects
Checked out '392a55b4f3f8ad30d845ac6ae35e8b27343bb944'.
>>> libg7221 dbfc29d4806ecdace50379a2f4d68a992a6fec34 Downloading
Doing shallow fetch, using 'refs/heads/master' to get 'dbfc29d4806ecdace50379a2f4d68a992a6fec34'
268K .git/objects
Checked out 'dbfc29d4806ecdace50379a2f4d68a992a6fec34'.
>>> libilbc 829b08c7902ceb87a261279fabb36b6d523c6e07 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '829b08c7902ceb87a261279fabb36b6d523c6e07'
792K .git/objects
Checked out '829b08c7902ceb87a261279fabb36b6d523c6e07'.
>>> libsilk 4268a02240c35c6055b0f237c46b09b2dcf79e45 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '4268a02240c35c6055b0f237c46b09b2dcf79e45'
720K .git/objects
Checked out '4268a02240c35c6055b0f237c46b09b2dcf79e45'.
>>> libsoundtouch 010a91a59071c7fefd316fca62c0d980ec85b4b1 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '010a91a59071c7fefd316fca62c0d980ec85b4b1'
164K .git/objects
Checked out '010a91a59071c7fefd316fca62c0d980ec85b4b1'.
>>> libsvgtiny ea9d99fc8b231c22d06168135e181d61f4eb2f06 Downloading
Doing shallow fetch of all branches
Doing full fetch
3,3M .git/objects
Checked out 'ea9d99fc8b231c22d06168135e181d61f4eb2f06'.
>>> libyuv 1ebf86795cb213a37f06eb1ef3713cff080568ea Downloading
Doing shallow fetch, using 'refs/heads/master' to get '1ebf86795cb213a37f06eb1ef3713cff080568ea'
348K .git/objects
Checked out '1ebf86795cb213a37f06eb1ef3713cff080568ea'.
>>> linux-firmware a179db97914da5e650c21ba8f9b0bae04a0f8a41 Downloading
Doing shallow fetch of all branches
83M .git/objects
Checked out 'a179db97914da5e650c21ba8f9b0bae04a0f8a41'.
>>> mcelog v111 Downloading
Doing shallow fetch, using 'refs/tags/v111' to get 'v111'
332K .git/objects
Checked out '96580a426f7ba92598fd7a3667cc2b78fc8d162f'.
>>> opkg v0.3.1 Downloading
Doing shallow fetch, using 'refs/tags/v0.3.1' to get 'v0.3.1'
296K .git/objects
Checked out '3ce3625c8924552699ae57d0e453a7dcc7d388b5'.
>>> qt-webkit-kiosk 7fe40a350abfbe5ec194e7c6c740f7099e8704cd Downloading
Doing shallow fetch, using 'refs/tags/1.99.3' to get '7fe40a350abfbe5ec194e7c6c740f7099e8704cd'
512K .git/objects
Checked out '7fe40a350abfbe5ec194e7c6c740f7099e8704cd'.
>>> sunxi-mali d343311efc8db166d8371b28494f0f27b6a5872 Downloading
Doing full fetch
116K .git/objects
Checked out 'd343311efc8db166d8371b28494f0f27b6a58724'.
>>> trace-cmd trace-cmd-v2.6 Downloading
Doing shallow fetch, using 'refs/tags/trace-cmd-v2.6' to get 'trace-cmd-v2.6'
1,9M .git/objects
Checked out '9be5d74805830a291615f2f34a27c903f6a37b1e'.
>>> uemacs 8841922689769960fa074fbb053cb8507f2f3ed9 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '8841922689769960fa074fbb053cb8507f2f3ed9'
584K .git/objects
Checked out '8841922689769960fa074fbb053cb8507f2f3ed9'.
>>> uhttpd 59e0c739634f46a164d939e54416287b91ff8a9b Downloading
Doing shallow fetch of all branches
112K .git/objects
Checked out '59e0c739634f46a164d939e54416287b91ff8a9b'.
>>> arm-trusted-firmware v1.2 Downloading
Doing shallow fetch, using 'refs/tags/v1.2' to get 'v1.2'
2,0M .git/objects
Checked out 'd0c104e1e1ad0102f0f4c70997b7ee6e6fbbe273'.
>>> at91bootstrap3 v3.8.6 Downloading
Doing shallow fetch, using 'refs/tags/v3.8.6' to get 'v3.8.6'
524K .git/objects
Checked out '7ca51179bb94dc48415b77db8f3757479d59cac1'.
>>> at91bootstrap3 v3.8.7 Downloading
Doing shallow fetch, using 'refs/tags/v3.8.7' to get 'v3.8.7'
524K .git/objects
Checked out '68b49c41f263c71ede046d99a8c5dd224b75903b'.
>>> uboot rel_socfpga_v2013.01.01_14.02.02 Downloading
Doing shallow fetch, using 'refs/tags/rel_socfpga_v2013.01.01_14.02.02' to get 'rel_socfpga_v2013.01.01_14.02.02'
Doing full fetch
91M .git/objects
Checked out 'e0d19aa80086b99a1dacb320eb12cb20e577aebc'.
>>> uboot rel_acds13.0sp1 Downloading
Doing shallow fetch, using 'refs/tags/rel_acds13.0sp1' to get 'rel_acds13.0sp1'
Doing full fetch
91M .git/objects
Checked out '191737ccb1214dfd02a3b279549ad4bc0e5218c1'.
>>> uboot linux4sam_5.5 Downloading
Doing shallow fetch, using 'refs/tags/linux4sam_5.5' to get 'linux4sam_5.5'
16M .git/objects
Checked out '801b789cb0eba61596f23d89f31db63767d84533'.
>>> uboot a4f583551d0025eb957ee5c9cb68657a429e4914 Downloading
Doing shallow fetch of all branches
20M .git/objects
Checked out 'a4f583551d0025eb957ee5c9cb68657a429e4914'.
>>> uboot rel_imx_4.1.15_2.0.0_ga Downloading
Doing shallow fetch, using 'refs/tags/rel_imx_4.1.15_2.0.0_ga' to get 'rel_imx_4.1.15_2.0.0_ga'
17M .git/objects
Checked out '0ec2a019117bb2d59b9672a145b4684313d92782'.
>>> uboot 1ec799cec97574a9838bc25b286484e579a41652 Downloading
Doing shallow fetch, using 'refs/tags/s905_5.1.1_v2.0' to get '1ec799cec97574a9838bc25b286484e579a41652'
16M .git/objects
Checked out '1ec799cec97574a9838bc25b286484e579a41652'.
>>> uboot a035d2673a90143a1a74557503b2e137b1447ae6 Downloading
Doing shallow fetch, using 'refs/heads/master' to get 'a035d2673a90143a1a74557503b2e137b1447ae6'
16M .git/objects
Checked out 'a035d2673a90143a1a74557503b2e137b1447ae6'.
>>> uboot 1ef4a29e8cea0239411dde64f9617ad76248fd02 Downloading
Doing shallow fetch, using 'refs/tags/Colibri_iMX6_LinuxImageV2.5Beta2_20151106' to get '1ef4a29e8cea0239411dde64f9617ad76248fd02'
Doing shallow fetch of all branches
Doing full fetch
108M .git/objects
Checked out '1ef4a29e8cea0239411dde64f9617ad76248fd02'.
>>> uboot via_3.10.17_2.0.6 Downloading
Doing shallow fetch, using 'refs/heads/via_3.10.17_2.0.6' to get 'via_3.10.17_2.0.6'
16M .git/objects
Checked out '4ddf7448ff54261c4730a8b3f06a31f20f8370f6'.
>>> uboot xilinx-v2016.2 Downloading
Doing shallow fetch, using 'refs/tags/xilinx-v2016.2' to get 'xilinx-v2016.2'
16M .git/objects
Checked out '0daf88c7f8c9085a81336a0ad2dd3bcc84c7a18a'.
>>> linux rel_socfpga-3.13_14.02.02 Downloading
Doing shallow fetch, using 'refs/tags/rel_socfpga-3.13_14.02.02' to get 'rel_socfpga-3.13_14.02.02'
Doing full fetch
994M .git/objects
Checked out 'bb0bb0a2a05443edef7af9f7de9fc8c3f36f01cb'.
>>> linux linux4sam_5.5 Downloading
Doing shallow fetch, using 'refs/tags/linux4sam_5.5' to get 'linux4sam_5.5'
150M .git/objects
Checked out '061f02b7aa3c26f02cd01be1ca0e4812192ba9a2'.
>>> linux 52c4aa7cdb93d61f8008f380135beaf7b8fa6593 Downloading
Doing shallow fetch, using 'refs/heads/processor-sdk-linux-02.00.00' to get '52c4aa7cdb93d61f8008f380135beaf7b8fa6593'
144M .git/objects
Checked out '52c4aa7cdb93d61f8008f380135beaf7b8fa6593'.
>>> linux fbf929bc733b82b15f6996d4262a45870f19d214 Downloading
Doing shallow fetch, using 'refs/heads/ci20-v3.18' to get 'fbf929bc733b82b15f6996d4262a45870f19d214'
139M .git/objects
Checked out 'fbf929bc733b82b15f6996d4262a45870f19d214'.
>>> linux ccb89e9b5657b4911c16d08e1581121222ee12c4 Downloading
Doing shallow fetch of all branches
682M .git/objects
Checked out 'ccb89e9b5657b4911c16d08e1581121222ee12c4'.
>>> linux rel_imx_4.1.15_2.0.0_ga Downloading
Doing shallow fetch, using 'refs/tags/rel_imx_4.1.15_2.0.0_ga' to get 'rel_imx_4.1.15_2.0.0_ga'
146M .git/objects
Checked out 'b63f3f52cb393e3287352cf63f0caef31a33ab63'.
>>> linux 0feded4f96ddca9816c6c1b8a4780cb4065747b9 Downloading
Doing shallow fetch, using 'refs/heads/master' to get '0feded4f96ddca9816c6c1b8a4780cb4065747b9'
138M .git/objects
Checked out '0feded4f96ddca9816c6c1b8a4780cb4065747b9'.
>>> linux v4.4.19-15-ev3dev-ev3_1 Downloading
Doing shallow fetch, using 'refs/tags/v4.4.19-15-ev3dev-ev3_1' to get 'v4.4.19-15-ev3dev-ev3_1'
152M .git/objects
Checked out '5bae80fb82b77919712e16970dd4d04725e69eaa'.
>>> linux ba1587b9b62c801d161897303aa6d22809485f9b Downloading
Doing shallow fetch of all branches
262M .git/objects
Checked out 'ba1587b9b62c801d161897303aa6d22809485f9b'.
>>> linux 925e508d37c76848881a8c8f7e9b02abc5731d88 Downloading
Doing shallow fetch, using 'refs/tags/jenkins-deb_s905_kernel-87' to get '925e508d37c76848881a8c8f7e9b02abc5731d88'
142M .git/objects
Checked out '925e508d37c76848881a8c8f7e9b02abc5731d88'.
>>> linux dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1 Downloading
Doing shallow fetch of all branches
423M .git/objects
Checked out 'dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1'.
>>> linux 9669a50a3a8e4f33b4fe138277bc4407e1eab9b2 Downloading
Doing shallow fetch of all branches
Doing full fetch
1,9G .git/objects
Checked out '9669a50a3a8e4f33b4fe138277bc4407e1eab9b2'.
>>> linux 59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b Downloading
Doing shallow fetch, using 'refs/heads/master' to get '59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b'
134M .git/objects
Checked out '59dbf6a4998e967eb9c6bdcc9b506c0d96acb26b'.
>>> linux 8f237ebe42f2cb911245369276a6b3043c2815f2 Downloading
Doing shallow fetch of all branches
Doing full fetch
1,3G .git/objects
Checked out '8f237ebe42f2cb911245369276a6b3043c2815f2'.
>>> linux 70d1e85a22879e27cc9e36384438d5a9793e44b0 Downloading
Doing shallow fetch of all branches
203M .git/objects
Checked out '70d1e85a22879e27cc9e36384438d5a9793e44b0'.
>>> linux via_3.10.17_2.0.6 Downloading
Doing shallow fetch, using 'refs/heads/via_3.10.17_2.0.6' to get 'via_3.10.17_2.0.6'
128M .git/objects
Checked out '201723eb5e6e6a274b999dbcef2bcaee7ebd4244'.
>>> linux efaf36531fe7b1fc15a48033e5972825c91f9fc6 Downloading
Doing shallow fetch of all branches
1000M .git/objects
Checked out 'efaf36531fe7b1fc15a48033e5972825c91f9fc6'.
>>> linux xilinx-v2016.2 Downloading
Doing shallow fetch, using 'refs/tags/xilinx-v2016.2' to get 'xilinx-v2016.2'
151M .git/objects
Checked out 'dfb97bc345e323f2851022be24b0846183d158cc'.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment