|
@@ -63,7 +63,9 @@ public class TestSlive {
|
|
|
/** gets the test write location according to the coding guidelines */
|
|
|
private static File getWriteLoc() {
|
|
|
String writeLoc = System.getProperty(TEST_DATA_PROP, "build/test/data/");
|
|
|
- return new File(writeLoc, "slive");
|
|
|
+ File writeDir = new File(writeLoc, "slive");
|
|
|
+ writeDir.mkdirs();
|
|
|
+ return writeDir;
|
|
|
}
|
|
|
|
|
|
/** gets where the MR job places its data + output + results */
|