You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by tj...@apache.org on 2013/02/28 09:35:41 UTC

svn commit: r1451139 - /hama/trunk/examples/src/test/java/org/apache/hama/examples/SpMVTest.java

Author: tjungblut
Date: Thu Feb 28 08:35:41 2013
New Revision: 1451139

URL: http://svn.apache.org/r1451139
Log:
use tmp instead of users home

Modified:
    hama/trunk/examples/src/test/java/org/apache/hama/examples/SpMVTest.java

Modified: hama/trunk/examples/src/test/java/org/apache/hama/examples/SpMVTest.java
URL: http://svn.apache.org/viewvc/hama/trunk/examples/src/test/java/org/apache/hama/examples/SpMVTest.java?rev=1451139&r1=1451138&r2=1451139&view=diff
==============================================================================
--- hama/trunk/examples/src/test/java/org/apache/hama/examples/SpMVTest.java (original)
+++ hama/trunk/examples/src/test/java/org/apache/hama/examples/SpMVTest.java Thu Feb 28 08:35:41 2013
@@ -47,14 +47,12 @@ public class SpMVTest {
   protected static final Log LOG = LogFactory.getLog(SpMVTest.class);
 
   private HamaConfiguration conf;
-  private FileSystem fs;
   private String baseDir;
 
   @Before
   public void prepare() throws IOException {
     conf = new HamaConfiguration();
-    fs = FileSystem.get(conf);
-    baseDir = fs.getHomeDirectory().toString() + "/spmv";
+    baseDir = "/tmp/spmv";
   }
 
   /**