You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2014/09/17 14:10:44 UTC

svn commit: r1625540 - /lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/MockDirectoryWrapper.java

Author: rmuir
Date: Wed Sep 17 12:10:44 2014
New Revision: 1625540

URL: http://svn.apache.org/r1625540
Log:
give MDW verbosity when it throws deterministic exception

Modified:
    lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/MockDirectoryWrapper.java

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/MockDirectoryWrapper.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/MockDirectoryWrapper.java?rev=1625540&r1=1625539&r2=1625540&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/MockDirectoryWrapper.java (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/MockDirectoryWrapper.java Wed Sep 17 12:10:44 2014
@@ -41,6 +41,7 @@ import org.apache.lucene.index.IndexWrit
 import org.apache.lucene.index.IndexWriterConfig;
 import org.apache.lucene.index.NoDeletionPolicy;
 import org.apache.lucene.index.SegmentInfos;
+import org.apache.lucene.util.IOUtils;
 import org.apache.lucene.util.LuceneTestCase;
 import org.apache.lucene.util.TestUtil;
 import org.apache.lucene.util.ThrottledIndexOutput;
@@ -952,7 +953,15 @@ public class MockDirectoryWrapper extend
   synchronized void maybeThrowDeterministicException() throws IOException {
     if (failures != null) {
       for(int i = 0; i < failures.size(); i++) {
-        failures.get(i).eval(this);
+        try {
+          failures.get(i).eval(this);
+        } catch (Throwable t) {
+          if (LuceneTestCase.VERBOSE) {
+            System.out.println("MockDirectoryWrapper: throw exc");
+            t.printStackTrace(System.out);
+          }
+          IOUtils.reThrow(t);
+        }
       }
     }
   }