aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst/org/eclipse/jgit/diff/DiffPerformanceTest.java
Commit message (Collapse)AuthorAgeFilesLines
* Delete DiffPerformanceTestShawn O. Pearce2010-11-011-213/+0
| | | | | | | | | | | This test isn't that useful. The better way to evaluate diff algorithm performance is to run `jgit debug-diff-algorithms` over real-world repositories, such as linux-2.6.git. Whenever we modify an algorithm we should manually verify that its runtime performance doesn't get any worse than it already is. Change-Id: I0beed3a5a8a537c958a5a6438a1283f97fa2097a Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
* Reuse DiffPerformanceTest support code to validate algorithmsShawn O. Pearce2010-09-241-0/+213
Each algorithm should produce a particular number of results given one of the standard inputs used during the performance tests. To help ensure those tests are accurate, assert that the edit list length is correct. Change-Id: I292f8fde0cec6a60a75ce09e70814a00ca47cb99 Signed-off-by: Shawn O. Pearce <spearce@spearce.org>