Fix core test failrues

git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/branches/HADOOP-4687/core@780977 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Giridharan Kesavan 2009-06-02 09:11:13 +00:00
parent 5c7b7adacb
commit 244380a885
3 changed files with 4 additions and 2 deletions

View File

@ -46,6 +46,7 @@
<property name="build.dir" value="${basedir}/build"/>
<property name="build.classes" value="${build.dir}/classes"/>
<property name="build.src" value="${build.dir}/src"/>
<property name="build.webapps" value="${build.dir}/webapps"/>
<!-- convert spaces to _ so that mac os doesn't break things -->
<exec executable="sed" inputstring="${os.name}"
@ -227,6 +228,7 @@
<mkdir dir="${build.dir}"/>
<mkdir dir="${build.classes}"/>
<mkdir dir="${build.src}"/>
<mkdir dir="${build.webapps}"/>
<mkdir dir="${test.build.dir}"/>
<mkdir dir="${test.build.classes}"/>

View File

@ -101,7 +101,7 @@ public void testServletFilter() throws Exception {
//start a http server with CountingFilter
conf.set(HttpServer.FILTER_INITIALIZER_PROPERTY,
RecordingFilter.Initializer.class.getName());
HttpServer http = new HttpServer("datanode", "localhost", 0, true, conf);
HttpServer http = new HttpServer("..", "localhost", 0, true, conf);
http.start();
final String fsckURL = "/fsck";

View File

@ -99,7 +99,7 @@ public void testServletFilter() throws Exception {
//start a http server with CountingFilter
conf.set(HttpServer.FILTER_INITIALIZER_PROPERTY,
SimpleFilter.Initializer.class.getName());
HttpServer http = new HttpServer("datanode", "localhost", 0, true, conf);
HttpServer http = new HttpServer("..", "localhost", 0, true, conf);
http.start();
final String fsckURL = "/fsck";