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:57 UTC

[05/50] logging-log4net git commit: Do not fail on error when executing dotnet test

Do not fail on error when executing dotnet test


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

Branch: refs/heads/develop
Commit: 3c32a0ca48c881e71a0ac3ab5e97b616196ac9a3
Parents: bd92690
Author: Dominik Psenner <dp...@apache.org>
Authored: Sun Nov 12 01:24:46 2017 +0100
Committer: Dominik Psenner <dp...@apache.org>
Committed: Sun Nov 12 01:24:46 2017 +0100

----------------------------------------------------------------------
 tests/nant.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/3c32a0ca/tests/nant.build
----------------------------------------------------------------------
diff --git a/tests/nant.build b/tests/nant.build
index a30fe91..ba6fab5 100644
--- a/tests/nant.build
+++ b/tests/nant.build
@@ -866,7 +866,7 @@ limitations under the License.
     </target>
 
     <target name="runtests-netstandard-1.3" description="Runs log4net tests on .NET Standard 1.3">
-        <exec program="dotnet" workingdir="${log4net.basedir}/netstandard/log4net.tests">
+        <exec program="dotnet" workingdir="${log4net.basedir}/netstandard/log4net.tests" failonerror="false">
             <arg value="test"/>
             <arg value="--logger:trx"/>
         </exec>