Repository: spark
Updated Branches:
  refs/heads/branch-1.0 3892ec584 -> ef5e9d70f


[SPARK-1527] change rootDir*.getName to rootDir*.getAbsolutePath

JIRA issue: [SPARK-1527](https://issues.apache.org/jira/browse/SPARK-1527)

getName() only gets the last component of the file path. When deleting 
test-generated directories,
we should pass the generated directory's absolute path to DiskBlockManager.

Author: Ye Xianjin <advance...@gmail.com>

This patch had conflicts when merged, resolved by
Committer: Patrick Wendell <pwend...@gmail.com>

Closes #436 from advancedxy/SPARK-1527 and squashes the following commits:

4678bab [Ye Xianjin] change rootDir*.getname to rootDir*.getAbsolutePath so the 
temporary directories are deleted when the test is finished.
(cherry picked from commit 753b04dea4b04ba9d0dd0011f00e9d70367e76fc)

Signed-off-by: Patrick Wendell <pwend...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/ef5e9d70
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/ef5e9d70
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/ef5e9d70

Branch: refs/heads/branch-1.0
Commit: ef5e9d70fafe9b819a6351fd041d0466e5c1d42d
Parents: 3892ec5
Author: Ye Xianjin <advance...@gmail.com>
Authored: Tue May 13 19:03:51 2014 -0700
Committer: Patrick Wendell <pwend...@gmail.com>
Committed: Tue May 13 19:04:23 2014 -0700

----------------------------------------------------------------------
 .../scala/org/apache/spark/storage/DiskBlockManagerSuite.scala     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/ef5e9d70/core/src/test/scala/org/apache/spark/storage/DiskBlockManagerSuite.scala
----------------------------------------------------------------------
diff --git 
a/core/src/test/scala/org/apache/spark/storage/DiskBlockManagerSuite.scala 
b/core/src/test/scala/org/apache/spark/storage/DiskBlockManagerSuite.scala
index 2167718..aaa7714 100644
--- a/core/src/test/scala/org/apache/spark/storage/DiskBlockManagerSuite.scala
+++ b/core/src/test/scala/org/apache/spark/storage/DiskBlockManagerSuite.scala
@@ -52,7 +52,7 @@ class DiskBlockManagerSuite extends FunSuite with 
BeforeAndAfterEach with Before
     rootDir0.deleteOnExit()
     rootDir1 = Files.createTempDir()
     rootDir1.deleteOnExit()
-    rootDirs = rootDir0.getName + "," + rootDir1.getName
+    rootDirs = rootDir0.getAbsolutePath + "," + rootDir1.getAbsolutePath
     println("Created root dirs: " + rootDirs)
   }
 

Reply via email to