summaryrefslogtreecommitdiff
path: root/git/test/performance
Commit message (Collapse)AuthorAgeFilesLines
* Improved pack writing test to show that the pack generation can be lightning ↵Sebastian Thiel2011-06-061-21/+28
| | | | 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.
* Fixed performance pack writing tests. As they are actually depent on the ↵Sebastian Thiel2011-06-062-80/+76
| | | | database (as streams have to be decompressed, it should be redesigned to have multiple database implementations)
* Moved performance commit object test into the respective subfolder to ↵Sebastian Thiel2011-06-062-1/+2
| | | | indicate what it tests
* Fixed performance commit object testingSebastian Thiel2011-06-062-8/+9
|
* Added loose object writing and reading performance tessts, in pure and ↵Sebastian Thiel2011-06-064-296/+149
| | | | 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
* Added PackedDB test with generalized type to allows other implementations to ↵Sebastian Thiel2011-06-063-7/+21
| | | | be tested as well at some point
* Fixed packed ODB test, in preparation for separating the type to allow ↵Sebastian Thiel2011-06-063-6/+21
| | | | future implementations to use the test as well
* Fixed odb performance testsSebastian Thiel2011-06-068-94/+102
|
* Started to fix imports - tests still have no chance to work as database ↵Sebastian Thiel2011-05-062-5/+5
| | | | changed drastically. Now the actual work begins
* replaced all gitdb strings with gitSebastian Thiel2011-05-064-14/+14
|
* Added all code from gitdb to gitpython. Next is to make it generally work. ↵Sebastian Thiel2011-05-053-0/+335
| | | | Then the tests will need some work
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-255-0/+552
adjusted