|
|
@ -85,6 +85,7 @@ public class GcBasicPackingTest extends GcTestCase { |
|
|
|
assertEquals(4, stats.numberOfLooseObjects); |
|
|
|
assertEquals(4, stats.numberOfLooseObjects); |
|
|
|
assertEquals(0, stats.numberOfPackedObjects); |
|
|
|
assertEquals(0, stats.numberOfPackedObjects); |
|
|
|
assertEquals(0, stats.numberOfPackFiles); |
|
|
|
assertEquals(0, stats.numberOfPackFiles); |
|
|
|
|
|
|
|
assertEquals(0, stats.numberOfBitmaps); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Theory |
|
|
|
@Theory |
|
|
@ -102,6 +103,7 @@ public class GcBasicPackingTest extends GcTestCase { |
|
|
|
assertEquals(0, stats.numberOfLooseObjects); |
|
|
|
assertEquals(0, stats.numberOfLooseObjects); |
|
|
|
assertEquals(8, stats.numberOfPackedObjects); |
|
|
|
assertEquals(8, stats.numberOfPackedObjects); |
|
|
|
assertEquals(1, stats.numberOfPackFiles); |
|
|
|
assertEquals(1, stats.numberOfPackFiles); |
|
|
|
|
|
|
|
assertEquals(2, stats.numberOfBitmaps); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Theory |
|
|
|
@Theory |
|
|
@ -118,6 +120,7 @@ public class GcBasicPackingTest extends GcTestCase { |
|
|
|
assertEquals(0, stats.numberOfLooseObjects); |
|
|
|
assertEquals(0, stats.numberOfLooseObjects); |
|
|
|
assertEquals(4, stats.numberOfPackedObjects); |
|
|
|
assertEquals(4, stats.numberOfPackedObjects); |
|
|
|
assertEquals(1, stats.numberOfPackFiles); |
|
|
|
assertEquals(1, stats.numberOfPackFiles); |
|
|
|
|
|
|
|
assertEquals(1, stats.numberOfBitmaps); |
|
|
|
|
|
|
|
|
|
|
|
// Do the gc again and check that it hasn't changed anything
|
|
|
|
// Do the gc again and check that it hasn't changed anything
|
|
|
|
gc.gc(); |
|
|
|
gc.gc(); |
|
|
@ -125,6 +128,7 @@ public class GcBasicPackingTest extends GcTestCase { |
|
|
|
assertEquals(0, stats.numberOfLooseObjects); |
|
|
|
assertEquals(0, stats.numberOfLooseObjects); |
|
|
|
assertEquals(4, stats.numberOfPackedObjects); |
|
|
|
assertEquals(4, stats.numberOfPackedObjects); |
|
|
|
assertEquals(1, stats.numberOfPackFiles); |
|
|
|
assertEquals(1, stats.numberOfPackFiles); |
|
|
|
|
|
|
|
assertEquals(1, stats.numberOfBitmaps); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Theory |
|
|
|
@Theory |
|
|
@ -143,6 +147,7 @@ public class GcBasicPackingTest extends GcTestCase { |
|
|
|
assertEquals(0, stats.numberOfLooseObjects); |
|
|
|
assertEquals(0, stats.numberOfLooseObjects); |
|
|
|
assertEquals(8, stats.numberOfPackedObjects); |
|
|
|
assertEquals(8, stats.numberOfPackedObjects); |
|
|
|
assertEquals(2, stats.numberOfPackFiles); |
|
|
|
assertEquals(2, stats.numberOfPackFiles); |
|
|
|
|
|
|
|
assertEquals(1, stats.numberOfBitmaps); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Theory |
|
|
|
@Theory |
|
|
@ -220,6 +225,74 @@ public class GcBasicPackingTest extends GcTestCase { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
|
|
|
public void testCommitRangeForBitmaps() throws Exception { |
|
|
|
|
|
|
|
BranchBuilder bb1 = tr.branch("refs/heads/master"); |
|
|
|
|
|
|
|
bb1.commit().message("A1").add("A1", "A1").create(); |
|
|
|
|
|
|
|
bb1.commit().message("B1").add("B1", "B1").create(); |
|
|
|
|
|
|
|
bb1.commit().message("C1").add("C1", "C1").create(); |
|
|
|
|
|
|
|
BranchBuilder bb2 = tr.branch("refs/heads/working"); |
|
|
|
|
|
|
|
bb2.commit().message("A2").add("A2", "A2").create(); |
|
|
|
|
|
|
|
bb2.commit().message("B2").add("B2", "B2").create(); |
|
|
|
|
|
|
|
bb2.commit().message("C2").add("C2", "C2").create(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Consider all commits. Since history isn't deep all commits are
|
|
|
|
|
|
|
|
// selected.
|
|
|
|
|
|
|
|
configureGcRange(gc, -1); |
|
|
|
|
|
|
|
gc.gc(); |
|
|
|
|
|
|
|
assertEquals(6, gc.getStatistics().numberOfBitmaps); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Range==0 means don't examine commit history, create bitmaps only for
|
|
|
|
|
|
|
|
// branch tips, C1 & C2.
|
|
|
|
|
|
|
|
configureGcRange(gc, 0); |
|
|
|
|
|
|
|
gc.gc(); |
|
|
|
|
|
|
|
assertEquals(2, gc.getStatistics().numberOfBitmaps); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Consider only the most recent commit (C2, which is also a branch
|
|
|
|
|
|
|
|
// tip).
|
|
|
|
|
|
|
|
configureGcRange(gc, 1); |
|
|
|
|
|
|
|
gc.gc(); |
|
|
|
|
|
|
|
assertEquals(2, gc.getStatistics().numberOfBitmaps); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Consider only the two most recent commits, C2 & B2. C1 gets included
|
|
|
|
|
|
|
|
// too since it is a branch tip.
|
|
|
|
|
|
|
|
configureGcRange(gc, 2); |
|
|
|
|
|
|
|
gc.gc(); |
|
|
|
|
|
|
|
assertEquals(3, gc.getStatistics().numberOfBitmaps); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Consider C2 & B2 & A2. C1 gets included too since it is a branch tip.
|
|
|
|
|
|
|
|
configureGcRange(gc, 3); |
|
|
|
|
|
|
|
gc.gc(); |
|
|
|
|
|
|
|
assertEquals(4, gc.getStatistics().numberOfBitmaps); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Consider C2 & B2 & A2 & C1.
|
|
|
|
|
|
|
|
configureGcRange(gc, 4); |
|
|
|
|
|
|
|
gc.gc(); |
|
|
|
|
|
|
|
assertEquals(4, gc.getStatistics().numberOfBitmaps); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Consider C2 & B2 & A2 & C1 & B1.
|
|
|
|
|
|
|
|
configureGcRange(gc, 5); |
|
|
|
|
|
|
|
gc.gc(); |
|
|
|
|
|
|
|
assertEquals(5, gc.getStatistics().numberOfBitmaps); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Consider all six commits.
|
|
|
|
|
|
|
|
configureGcRange(gc, 6); |
|
|
|
|
|
|
|
gc.gc(); |
|
|
|
|
|
|
|
assertEquals(6, gc.getStatistics().numberOfBitmaps); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Input is out of range but should be capped to the total number of
|
|
|
|
|
|
|
|
// commits.
|
|
|
|
|
|
|
|
configureGcRange(gc, 1000); |
|
|
|
|
|
|
|
gc.gc(); |
|
|
|
|
|
|
|
assertEquals(6, gc.getStatistics().numberOfBitmaps); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void configureGcRange(GC myGc, int range) { |
|
|
|
|
|
|
|
PackConfig pconfig = new PackConfig(repo); |
|
|
|
|
|
|
|
pconfig.setBitmapCommitRange(range); |
|
|
|
|
|
|
|
myGc.setPackConfig(pconfig); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void configureGc(GC myGc, boolean aggressive) { |
|
|
|
private void configureGc(GC myGc, boolean aggressive) { |
|
|
|
PackConfig pconfig = new PackConfig(repo); |
|
|
|
PackConfig pconfig = new PackConfig(repo); |
|
|
|
if (aggressive) { |
|
|
|
if (aggressive) { |
|
|
|