--- .../tst/org/spearce/jgit/lib/WindowCacheTest.java | 7 +++++++ .../src/org/spearce/jgit/lib/WindowedFile.java | 7 +++++++ 2 files changed, 14 insertions(+), 0 deletions(-) diff --git a/org.spearce.jgit.test/tst/org/spearce/jgit/lib/WindowCacheTest.java b/org.spearce.jgit.test/tst/org/spearce/jgit/lib/WindowCacheTest.java index 0cd55c9..eba1aed 100644 --- a/org.spearce.jgit.test/tst/org/spearce/jgit/lib/WindowCacheTest.java +++ b/org.spearce.jgit.test/tst/org/spearce/jgit/lib/WindowCacheTest.java @@ -98,6 +98,13 @@ public void testObjectMovedToNewPack() throws IncorrectObjectTypeException, // Now here is the interesting thing. Will git figure the new // object exists in the new pack, and not the old one. + try { + Thread.sleep(2000); + } catch (InterruptedException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + System.gc(); assertEquals(o1.name(), new RevWalk(db).parseAny(o1).name()); } diff --git a/org.spearce.jgit/src/org/spearce/jgit/lib/WindowedFile.java b/org.spearce.jgit/src/org/spearce/jgit/lib/WindowedFile.java index 938f44c..f7377d1 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/lib/WindowedFile.java +++ b/org.spearce.jgit/src/org/spearce/jgit/lib/WindowedFile.java @@ -280,6 +280,13 @@ public void close() { } void cacheOpen() throws IOException { + try { + Thread.sleep(2000); + } catch (InterruptedException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + System.gc(); fd = new RandomAccessFile(fPath, "r"); length = fd.length(); try { -- 1.6.2.2.446.gfbdc0 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html