M logging.properties

- use log level INFO

M webclient/build-tests.xml

- comment out broken tests.  Currently: WindowCreatorTest, CurrentPageTest

M webclient/test/automated/src/classes/org/mozilla/webclient/WebclientTestCase.java

- Log INFO for tearDown()
This commit is contained in:
edburns%acm.org 2007-01-17 16:20:54 +00:00
parent 4dfde484ca
commit 6ccf81a66d
3 changed files with 13 additions and 3 deletions

View File

@ -8,5 +8,5 @@ java.util.logging.FileHandler.limit = 50000
java.util.logging.FileHandler.append = true
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
org.mozilla.webclient.level=FINEST
org.mozilla.webclient.level=INFO

View File

@ -182,9 +182,13 @@
<test name="org.mozilla.webclient.MouseListenerTest"/>
<test name="org.mozilla.webclient.KeyListenerTest"/>
<test name="org.mozilla.webclient.DocumentLoadListenerTest"/>
<!--
<test name="org.mozilla.webclient.WindowCreatorTest"/>
-->
<test name="org.mozilla.webclient.DOMTest"/>
<!--
<test name="org.mozilla.webclient.CurrentPageTest"/>
-->
<!-- non running
<test name="org.mozilla.webclient.wrapper_native.gtk.TestGtkBrowserControlCanvas"/>
-->
@ -203,6 +207,7 @@
<sysproperty key="native.waitForDebugger"
value="${native.waitForDebugger}"/>
<jvmarg line="${debug.jvm.args}"/>
<jvmarg line="-Djava.util.logging.config.file=${basedir}${FILE_PATH_SEP}..${FILE_PATH_SEP}logging.properties"/>
<classpath refid="test.classpath"/>
</java>

View File

@ -1,5 +1,5 @@
/*
* $Id: WebclientTestCase.java,v 1.10 2007/01/17 11:43:43 edburns%acm.org Exp $
* $Id: WebclientTestCase.java,v 1.11 2007/01/17 16:20:54 edburns%acm.org Exp $
*/
/*
@ -47,7 +47,7 @@ import org.mozilla.util.THTTPD;
*
* <B>Lifetime And Scope</B> <P>
*
* @version $Id: WebclientTestCase.java,v 1.10 2007/01/17 11:43:43 edburns%acm.org Exp $
* @version $Id: WebclientTestCase.java,v 1.11 2007/01/17 16:20:54 edburns%acm.org Exp $
*
* @see Blah
* @see Bloo
@ -125,6 +125,11 @@ public void setUp()
}
public void tearDown()
{
LOGGER.info(this.getClass().getName() + " tearDown()");
}
//
// General Methods
//