You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by dp...@apache.org on 2017/11/11 01:13:06 UTC

logging-log4net git commit: Yet another attempt to produce test output

Repository: logging-log4net
Updated Branches:
  refs/heads/feature/cd-pipeline 969ff1d89 -> 5199ec008


Yet another attempt to produce test output

This time we play through https://github.com/nunit/dotnet-test-nunit/issues/100


Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/5199ec00
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/5199ec00
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/5199ec00

Branch: refs/heads/feature/cd-pipeline
Commit: 5199ec00836fbab7afa48b84e1661278eec9e386
Parents: 969ff1d
Author: Dominik Psenner <dp...@apache.org>
Authored: Sat Nov 11 02:12:59 2017 +0100
Committer: Dominik Psenner <dp...@apache.org>
Committed: Sat Nov 11 02:12:59 2017 +0100

----------------------------------------------------------------------
 Jenkinsfile      | 2 +-
 tests/nant.build | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/5199ec00/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index 23b7551..d7621e2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -64,7 +64,7 @@ pipeline {
 
 						// test
 						sh "nant -buildfile:tests/nant.build runtests-netstandard-1.3"
-						stash includes: '**/*.trx', name: 'netstandard-1.3-testresults'
+						stash includes: '**/*.xml', name: 'netstandard-1.3-testresults'
 					}
 				}
 			}

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/5199ec00/tests/nant.build
----------------------------------------------------------------------
diff --git a/tests/nant.build b/tests/nant.build
index ab24c82..11b2c00 100644
--- a/tests/nant.build
+++ b/tests/nant.build
@@ -868,7 +868,7 @@ 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"/>
+            <arg value="--work"/>
         </exec>
     </target>