Update of /cvsroot/nice/Nice/src/nice/tools/ant
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1292/src/nice/tools/ant
Modified Files:
NiceUnit.java
Log Message:
Add null parameter for classloader, to adapt to artem's last change.
Index: NiceUnit.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/nice/tools/ant/NiceUnit.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** NiceUnit.java 20 Mar 2004 15:49:24 -0000 1.2
--- NiceUnit.java 28 Jun 2005 07:58:36 -0000 1.3
***************
*** 130,134 ****
(nestedClasspath != null ? File.pathSeparator+nestedClasspath : "");
! if (! nice.tools.unit.fun.runTests(pack, listener, classpath))
throw new BuildException("Package " + pack + " was not found");
--- 130,134 ----
(nestedClasspath != null ? File.pathSeparator+nestedClasspath : "");
! if (! nice.tools.unit.fun.runTests(pack, listener, classpath, null))
throw new BuildException("Package " + pack + " was not found");
|