HADOOP-11440. Use "test.build.data" instead of "build.test.dir" for testing in ClientBaseWithFixes. Contributed by Kengo Seki.

This commit is contained in:
Akira Ajisaka 2015-02-18 17:55:04 -08:00
parent b8a14efdf5
commit 18fb421fab
2 changed files with 4 additions and 1 deletions

View File

@ -621,6 +621,9 @@ Release 2.7.0 - UNRELEASED
HADOOP-11521. Make connection timeout configurable in s3a. HADOOP-11521. Make connection timeout configurable in s3a.
(Thomas Demoor via stevel) (Thomas Demoor via stevel)
HADOOP-11440. Use "test.build.data" instead of "build.test.dir" for testing
in ClientBaseWithFixes. (Kengo Seki via aajisaka)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-11323. WritableComparator#compare keeps reference to byte array. HADOOP-11323. WritableComparator#compare keeps reference to byte array.

View File

@ -66,7 +66,7 @@ public abstract class ClientBaseWithFixes extends ZKTestCase {
public static int CONNECTION_TIMEOUT = 30000; public static int CONNECTION_TIMEOUT = 30000;
static final File BASETEST = static final File BASETEST =
new File(System.getProperty("build.test.dir", "build")); new File(System.getProperty("test.build.data", "build"));
protected final String hostPort = initHostPort(); protected final String hostPort = initHostPort();
protected int maxCnxns = 0; protected int maxCnxns = 0;