couple of minor test cleanups to see if this gets us past the bamboo hump
parent
59c7d72146
commit
1aab81e235
|
@ -68,6 +68,5 @@
|
|||
<exec program="rsync" workingdir="../doc" commandline="-az - - delete html/ /home/afrisby/public_html/docs/html/" />
|
||||
-->
|
||||
<!-- ensure a clean checkout each time -->
|
||||
<delete dir="../" />
|
||||
</target>
|
||||
</project>
|
||||
|
|
|
@ -49,14 +49,6 @@ namespace OpenSim.Data.SQLite.Tests
|
|||
public void Init()
|
||||
{
|
||||
SuperInit();
|
||||
try
|
||||
{
|
||||
log4net.Config.XmlConfigurator.Configure();
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
// I don't care, just leave log4net off
|
||||
}
|
||||
|
||||
file = Path.GetTempFileName() + ".db";
|
||||
connect = "URI=file:" + file + ",version=3";
|
||||
|
|
|
@ -49,7 +49,7 @@ namespace OpenSim.Data.Tests
|
|||
{
|
||||
log4net.Config.XmlConfigurator.Configure();
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception e)
|
||||
{
|
||||
// I don't care, just leave log4net off
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ namespace OpenSim.Data.Tests
|
|||
{
|
||||
log4net.Config.XmlConfigurator.Configure();
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception e)
|
||||
{
|
||||
// I don't care, just leave log4net off
|
||||
}
|
||||
|
|
|
@ -51,7 +51,7 @@ namespace OpenSim.Data.Tests
|
|||
{
|
||||
log4net.Config.XmlConfigurator.Configure();
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception e)
|
||||
{
|
||||
// I don't care, just leave log4net off
|
||||
}
|
||||
|
|
|
@ -49,7 +49,7 @@ namespace OpenSim.Data.Tests
|
|||
{
|
||||
log4net.Config.XmlConfigurator.Configure();
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception e)
|
||||
{
|
||||
// I don't care, just leave log4net off
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue