Tests: removed Plain formatter to see if that's the cause of the parse failure
Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/be86c986 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/be86c986 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/be86c986 Branch: refs/heads/feature/RollingFileAppender-NG Commit: be86c9863640687d7a5d8707375e5ca1dc5d38ad Parents: b7dd145 Author: Dominik Psenner <[email protected]> Authored: Wed Jul 5 16:09:13 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Wed Jul 5 16:14:41 2017 +0200 ---------------------------------------------------------------------- tests/nant.build | 11 ----------- 1 file changed, 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/be86c986/tests/nant.build ---------------------------------------------------------------------- diff --git a/tests/nant.build b/tests/nant.build index 7db0cd4..3a5c00d 100644 --- a/tests/nant.build +++ b/tests/nant.build @@ -790,7 +790,6 @@ limitations under the License. <target name="runtests-net-1.0" description="Runs log4net tests on .NET Framework 1.0 version" depends="compile-net-1.0"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -798,7 +797,6 @@ limitations under the License. <target name="runtests-net-1.1" description="Runs log4net tests on .NET Framework 1.1 version" depends="compile-net-1.1"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -806,7 +804,6 @@ limitations under the License. <target name="runtests-net-2.0" description="Runs log4net tests on .NET Framework 2.0 version" depends="compile-net-2.0"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -814,7 +811,6 @@ limitations under the License. <target name="runtests-mono-2.0" description="Runs log4net tests on Mono Framework 2.0 version" depends="compile-mono-2.0"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -822,7 +818,6 @@ limitations under the License. <target name="runtests-mono-3.5" description="Runs log4net tests on Mono Framework 3.5 version" depends="compile-mono-3.5"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -830,7 +825,6 @@ limitations under the License. <target name="runtests-mono-4.0" description="Runs log4net tests on Mono Framework 4.0 version" depends="compile-mono-4.0"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -838,7 +832,6 @@ limitations under the License. <target name="runtests-net-3.5" description="Runs log4net tests on .NET Framework 3.5 version" depends="compile-net-3.5"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -846,7 +839,6 @@ limitations under the License. <target name="runtests-net-3.5-cp" description="Runs log4net tests on .NET Framework 3.5 Client Profile version" depends="compile-net-3.5-cp"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -854,7 +846,6 @@ limitations under the License. <target name="runtests-net-4.0" description="Runs log4net tests on .NET Framework 4.0 version" depends="compile-net-4.0"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -862,7 +853,6 @@ limitations under the License. <target name="runtests-net-4.0-cp" description="Runs log4net tests on .NET Framework 4.0 Client Profile version" depends="compile-net-4.0-cp"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target> @@ -870,7 +860,6 @@ limitations under the License. <target name="runtests-net-4.5" description="Runs log4net tests on .NET Framework 4.5 version" depends="compile-net-4.5"> <nunit2 failonerror="false"> <formatter type="Xml" usefile="true" extension=".xml" outputdir="${current.bin.dir}" /> - <formatter type="Plain"/> <test assemblyname="${current.bin.dir}/log4net.Tests.dll" /> </nunit2> </target>
