You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2011/09/26 20:38:37 UTC

svn commit: r1175989 - /jackrabbit/trunk/test/performance/base/src/main/java/org/apache/jackrabbit/performance/SmallFileWriteTest.java

Author: jukka
Date: Mon Sep 26 18:38:37 2011
New Revision: 1175989

URL: http://svn.apache.org/viewvc?rev=1175989&view=rev
Log:
JCR-2695: Jackrabbit performance test suite

Remember to save() after adding files in SmallFileWriteTest, also in trunk after accidentally committing the change to a branch.

Modified:
    jackrabbit/trunk/test/performance/base/src/main/java/org/apache/jackrabbit/performance/SmallFileWriteTest.java

Modified: jackrabbit/trunk/test/performance/base/src/main/java/org/apache/jackrabbit/performance/SmallFileWriteTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/test/performance/base/src/main/java/org/apache/jackrabbit/performance/SmallFileWriteTest.java?rev=1175989&r1=1175988&r2=1175989&view=diff
==============================================================================
--- jackrabbit/trunk/test/performance/base/src/main/java/org/apache/jackrabbit/performance/SmallFileWriteTest.java (original)
+++ jackrabbit/trunk/test/performance/base/src/main/java/org/apache/jackrabbit/performance/SmallFileWriteTest.java Mon Sep 26 18:38:37 2011
@@ -50,6 +50,7 @@ public class SmallFileWriteTest extends 
             content.setProperty(
                     "jcr:data", new TestInputStream(FILE_SIZE * 1024));
         }
+        session.save();
     }
 
     public void afterTest() throws RepositoryException {