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 2018/05/20 15:47:55 UTC

[03/50] logging-log4net git commit: Let dotnet test produce mstest trx results

Let dotnet test produce mstest trx results

Following the outlined guide at https://github.com/nunit/nunit3-vs-adapter/issues/323.


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

Branch: refs/heads/develop
Commit: b42ee98df062a4cd70f4235328cc4442a9e82881
Parents: 6b7f64a
Author: Dominik Psenner <dp...@apache.org>
Authored: Sun Nov 12 00:31:13 2017 +0100
Committer: Dominik Psenner <dp...@apache.org>
Committed: Sun Nov 12 00:34:05 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/b42ee98d/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index d7621e2..23b7551 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -64,7 +64,7 @@ pipeline {
 
 						// test
 						sh "nant -buildfile:tests/nant.build runtests-netstandard-1.3"
-						stash includes: '**/*.xml', name: 'netstandard-1.3-testresults'
+						stash includes: '**/*.trx', name: 'netstandard-1.3-testresults'
 					}
 				}
 			}

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/b42ee98d/tests/nant.build
----------------------------------------------------------------------
diff --git a/tests/nant.build b/tests/nant.build
index 11b2c00..a30fe91 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="--work"/>
+            <arg value="--logger:trx"/>
         </exec>
     </target>