Repository: logging-log4net Updated Branches: refs/heads/feature/cd-pipeline 2e22e96fc -> e1f33b4da
Move netstandard-1.3 test results to tests/bin/netstandard/1.3 Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/e1f33b4d Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/e1f33b4d Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/e1f33b4d Branch: refs/heads/feature/cd-pipeline Commit: e1f33b4da0dbe7a32fbb685096f1b869cbb94970 Parents: 2e22e96 Author: Dominik Psenner <[email protected]> Authored: Sat Nov 11 01:43:48 2017 +0100 Committer: Dominik Psenner <[email protected]> Committed: Sat Nov 11 01:43:48 2017 +0100 ---------------------------------------------------------------------- tests/nant.build | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/e1f33b4d/tests/nant.build ---------------------------------------------------------------------- diff --git a/tests/nant.build b/tests/nant.build index 0969073..a1aa114 100644 --- a/tests/nant.build +++ b/tests/nant.build @@ -868,10 +868,14 @@ limitations under the License. <target name="runtests-netstandard-1.3" description="Runs log4net tests on .NET Standard 1.3"> <exec program="dotnet" workingdir="${log4net.basedir}/netstandard/log4net.tests"> <arg value="test"/> - <arg value="--logger:trx;LogFileName=${log4net.basedir}/tests/bin/log4net.Tests.dll-results.mstest.trx"/> - <arg value="--verbosity"/> - <arg value="detailed"/> + <arg value="--logger:trx;LogFileName=log4net.Tests.dll-results.mstest.trx"/> </exec> + <mkdir dir="${log4net.basedir}/tests/bin/netstandard/1.3"/> + <move todir="${log4net.basedir}/tests/bin/netstandard/1.3"> + <fileset basedir="netstandard/"> + <include name="**/*.trx" /> + </fileset> + </move> </target> </project>
