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:48:47 UTC

[03/50] logging-log4net git commit: netstandard-1.3: specify csproj to test when running dotnet test

netstandard-1.3: specify csproj to test when running dotnet test

This also changes the working directory hopefully fixing the test
build errors with jenkins.


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

Branch: refs/heads/feature/RollingFileAppender-NG
Commit: 9bbb6585fefd2c9ea5aebd2830b90e2118a8ada8
Parents: 9ed358f
Author: Dominik Psenner <dp...@apache.org>
Authored: Tue Nov 28 21:08:39 2017 +0100
Committer: Dominik Psenner <dp...@apache.org>
Committed: Tue Nov 28 21:08:39 2017 +0100

----------------------------------------------------------------------
 tests/nant.build | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/9bbb6585/tests/nant.build
----------------------------------------------------------------------
diff --git a/tests/nant.build b/tests/nant.build
index b04af84..4c6536f 100644
--- a/tests/nant.build
+++ b/tests/nant.build
@@ -866,9 +866,10 @@ 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/1.3/log4net.tests" failonerror="false">
+		<exec program="dotnet" workingdir="${log4net.basedir}/netstandard/1.3" failonerror="false">
             <arg value="test"/>
-            <arg value="--logger:trx"/>
+			<arg value="--logger:trx"/>
+			<arg value="log4net.tests/log4net.tests.csproj" />
         </exec>
     </target>