[JGIT PATCH 2/3] Simulate breakpoints
From: Robin Rosenberg <hidden>
Date: 2016-06-15 22:46:37
Subsystem:
the rest · Maintainer:
Linus Torvalds
--- .../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