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/" />
|
<exec program="rsync" workingdir="../doc" commandline="-az - - delete html/ /home/afrisby/public_html/docs/html/" />
|
||||||
-->
|
-->
|
||||||
<!-- ensure a clean checkout each time -->
|
<!-- ensure a clean checkout each time -->
|
||||||
<delete dir="../" />
|
|
||||||
</target>
|
</target>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -49,14 +49,6 @@ namespace OpenSim.Data.SQLite.Tests
|
||||||
public void Init()
|
public void Init()
|
||||||
{
|
{
|
||||||
SuperInit();
|
SuperInit();
|
||||||
try
|
|
||||||
{
|
|
||||||
log4net.Config.XmlConfigurator.Configure();
|
|
||||||
}
|
|
||||||
catch (Exception)
|
|
||||||
{
|
|
||||||
// I don't care, just leave log4net off
|
|
||||||
}
|
|
||||||
|
|
||||||
file = Path.GetTempFileName() + ".db";
|
file = Path.GetTempFileName() + ".db";
|
||||||
connect = "URI=file:" + file + ",version=3";
|
connect = "URI=file:" + file + ",version=3";
|
||||||
|
|
|
@ -49,7 +49,7 @@ namespace OpenSim.Data.Tests
|
||||||
{
|
{
|
||||||
log4net.Config.XmlConfigurator.Configure();
|
log4net.Config.XmlConfigurator.Configure();
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
// I don't care, just leave log4net off
|
// I don't care, just leave log4net off
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,7 @@ namespace OpenSim.Data.Tests
|
||||||
{
|
{
|
||||||
log4net.Config.XmlConfigurator.Configure();
|
log4net.Config.XmlConfigurator.Configure();
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
// I don't care, just leave log4net off
|
// I don't care, just leave log4net off
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,7 @@ namespace OpenSim.Data.Tests
|
||||||
{
|
{
|
||||||
log4net.Config.XmlConfigurator.Configure();
|
log4net.Config.XmlConfigurator.Configure();
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
// I don't care, just leave log4net off
|
// I don't care, just leave log4net off
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,7 +49,7 @@ namespace OpenSim.Data.Tests
|
||||||
{
|
{
|
||||||
log4net.Config.XmlConfigurator.Configure();
|
log4net.Config.XmlConfigurator.Configure();
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
// I don't care, just leave log4net off
|
// I don't care, just leave log4net off
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue