aboutsummaryrefslogtreecommitdiff
path: root/git/test/performance
AgeCommit message (Collapse)Author
2014-02-09tabs to 4 spaces - overall state of this branch is desolate, but fixable. ↵Sebastian Thiel
Needs plenty of work
2011-07-08Fixed up tests to actually use pygit2. Its worth noting that the performance ↵Sebastian Thiel
tests only work reliably in a patched up version, or the next point release.
2011-07-08Added basic frame for pygit2 - it just needs some basic methods to be ↵Sebastian Thiel
implemented now - depending on the performance, it might actually receive some more work
2011-07-07Added default performance tests - these should help to measure something at ↵Sebastian Thiel
least, which implicitly includes pack handling. For the pack specific tests to work, one would need a pack interface though, which is currently not planned to be specifically exposed
2011-07-05util: pick the type of memory manager based on the python version, to have ↵Sebastian Thiel
optimal results in all cases (at least the ones I can test) pack: now works properly with a sliding memory manager test_packedodb_pure: fixed very memory hungry implementation by using an iterator. This will of course reduce the measured performance a bit, but 750MB of memory is just a little bit too much for an ordinary test. Maybe it would be alright to just reduce the number of items ... but performance isn't a strength of python after all
2011-06-06Improved pack writing test to show that the pack generation can be lightning ↵Sebastian Thiel
fast with nearly now overhead if the data streams in fast enough (~30 MB/s when writing a pack). This shows that there is huge potential for sending packs, considering that we are actually recompressing them (without deltification). To be faster in future, we could probably just send ref-deltas or full objects as found in the pack without doing any recompression.
2011-06-06Fixed performance pack writing tests. As they are actually depent on the ↵Sebastian Thiel
database (as streams have to be decompressed, it should be redesigned to have multiple database implementations)
2011-06-06Moved performance commit object test into the respective subfolder to ↵Sebastian Thiel
indicate what it tests
2011-06-06Fixed performance commit object testingSebastian Thiel
2011-06-06Added loose object writing and reading performance tessts, in pure and ↵Sebastian Thiel
command implementations. The previous performance test was truncated a bit as it compared directly with the git hash_object write performance. This is out, and if we wanted it we could implement it , but its actually slower for us
2011-06-06Added PackedDB test with generalized type to allows other implementations to ↵Sebastian Thiel
be tested as well at some point
2011-06-06Fixed packed ODB test, in preparation for separating the type to allow ↵Sebastian Thiel
future implementations to use the test as well
2011-06-06Fixed odb performance testsSebastian Thiel
2011-05-06Started to fix imports - tests still have no chance to work as database ↵Sebastian Thiel
changed drastically. Now the actual work begins
2011-05-06replaced all gitdb strings with gitSebastian Thiel
2011-05-05Added all code from gitdb to gitpython. Next is to make it generally work. ↵Sebastian Thiel
Then the tests will need some work
2010-11-25Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel
adjusted