<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libgit2.git/tests/index, branch cmn/https-cap-no-hardcode</title>
<subtitle>github.com: libgit2/libgit2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/'/>
<entry>
<title>tests: index: do not re-allocate index</title>
<updated>2016-08-29T11:29:01+00:00</updated>
<author>
<name>Patrick Steinhardt</name>
<email>ps@pks.im</email>
</author>
<published>2016-08-29T11:09:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=86e88534d6ad2982d7519084e4323e93829a571c'/>
<id>86e88534d6ad2982d7519084e4323e93829a571c</id>
<content type='text'>
Plug a memory leak caused by re-allocating a `git_index`
structure which has already been allocated by the test suite's
initializer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Plug a memory leak caused by re-allocating a `git_index`
structure which has already been allocated by the test suite's
initializer.
</pre>
</div>
</content>
</entry>
<entry>
<title>index: support index v4</title>
<updated>2016-08-10T18:19:30+00:00</updated>
<author>
<name>David Turner</name>
<email>dturner@twopensource.com</email>
</author>
<published>2016-05-17T19:40:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=5625d86b994fd81f1b0d887890e8168d7b5f46cc'/>
<id>5625d86b994fd81f1b0d887890e8168d7b5f46cc</id>
<content type='text'>
Support reading and writing index v4.  Index v4 uses a very simple
compression scheme for pathnames, but is otherwise similar to index v3.

Signed-off-by: David Turner &lt;dturner@twitter.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Support reading and writing index v4.  Index v4 uses a very simple
compression scheme for pathnames, but is otherwise similar to index v3.

Signed-off-by: David Turner &lt;dturner@twitter.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>odb: actually insert the empty blob in tests</title>
<updated>2016-08-06T00:34:19+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@github.com</email>
</author>
<published>2016-08-06T00:34:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=9bc8c80ffa3d20e958406a104c521e2aae0f1255'/>
<id>9bc8c80ffa3d20e958406a104c521e2aae0f1255</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>index: include conflicts in `git_index_read_index`</title>
<updated>2016-06-29T22:37:00+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@github.com</email>
</author>
<published>2016-06-29T21:55:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=6249d960ab2d968acd1a9d87986c81a12e2e96bc'/>
<id>6249d960ab2d968acd1a9d87986c81a12e2e96bc</id>
<content type='text'>
Ensure that we include conflicts when calling `git_index_read_index`,
which will remove conflicts in the index that do not exist in the new
target, and will add conflicts from the new target.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ensure that we include conflicts when calling `git_index_read_index`,
which will remove conflicts in the index that do not exist in the new
target, and will add conflicts from the new target.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: ensure we can round-trip a written tree</title>
<updated>2016-06-02T07:37:04+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@github.com</email>
</author>
<published>2016-06-02T03:31:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=91fbf9d867877d77ec0546bd45fb649721d194f8'/>
<id>91fbf9d867877d77ec0546bd45fb649721d194f8</id>
<content type='text'>
Read a tree into an index, write the index, then re-open the index and
ensure that we are treesame to the original.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Read a tree into an index, write the index, then re-open the index and
ensure that we are treesame to the original.
</pre>
</div>
</content>
</entry>
<entry>
<title>round-trip trees through index_read_index</title>
<updated>2016-06-02T05:59:46+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@github.com</email>
</author>
<published>2016-06-01T19:52:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=5baa20b86e23ace3817c4ed38f9de7ea57dcf4a3'/>
<id>5baa20b86e23ace3817c4ed38f9de7ea57dcf4a3</id>
<content type='text'>
Read a tree into an index using `git_index_read_index` (by reading
a tree into a new index, then reading that index into the current
index), then write the index back out, ensuring that our new index
is treesame to the tree that we read.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Read a tree into an index using `git_index_read_index` (by reading
a tree into a new index, then reading that index into the current
index), then write the index back out, ensuring that our new index
is treesame to the tree that we read.
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: nsec: correctly free nsec_path</title>
<updated>2016-03-11T08:07:42+00:00</updated>
<author>
<name>Patrick Steinhardt</name>
<email>ps@pks.im</email>
</author>
<published>2016-03-11T08:07:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=e756877dbff7b6b706820ce49744808c14941c32'/>
<id>e756877dbff7b6b706820ce49744808c14941c32</id>
<content type='text'>
git_buf_clear does not free allocated memory associated with a
git_buf. Use `git_buf_free` instead to correctly free its memory
and plug the memory leak.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git_buf_clear does not free allocated memory associated with a
git_buf. Use `git_buf_free` instead to correctly free its memory
and plug the memory leak.
</pre>
</div>
</content>
</entry>
<entry>
<title>index::racy: force racy entry</title>
<updated>2016-03-08T05:47:55+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@github.com</email>
</author>
<published>2016-03-07T22:37:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=53fb823bcc4d9206a768024026b7146cb4e1e507'/>
<id>53fb823bcc4d9206a768024026b7146cb4e1e507</id>
<content type='text'>
Instead of hoping that we can get a racy entry by going real fast
and praying real hard, just create a racy entry.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of hoping that we can get a racy entry by going real fast
and praying real hard, just create a racy entry.
</pre>
</div>
</content>
</entry>
<entry>
<title>index::nsec: don't expect shit filesystems to not suck</title>
<updated>2016-03-07T22:04:32+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@github.com</email>
</author>
<published>2016-03-07T22:04:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=565c419972343c6e34dbf24f3d98bbb34b99d20a'/>
<id>565c419972343c6e34dbf24f3d98bbb34b99d20a</id>
<content type='text'>
If the underlying filesystem doesn't support better than one
second resolution, then don't expect that turning on `GIT_USE_NSEC`
does anything magical to change that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the underlying filesystem doesn't support better than one
second resolution, then don't expect that turning on `GIT_USE_NSEC`
does anything magical to change that.
</pre>
</div>
</content>
</entry>
<entry>
<title>turn on strict object validation by default</title>
<updated>2016-02-28T23:59:43+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@github.com</email>
</author>
<published>2016-02-28T20:51:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=f2dddf52c041ff2f9185bdb320ddccad1523a2bf'/>
<id>f2dddf52c041ff2f9185bdb320ddccad1523a2bf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
