From: Viktor Hofer Date: Mon, 20 May 2019 23:04:24 +0000 (+0200) Subject: Update docs with Outerloop changes X-Git-Tag: submit/tizen/20210909.063632~11031^2~1535 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=89274662b3a55974691e058229033c514476fd34;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Update docs with Outerloop changes Commit migrated from https://github.com/dotnet/corefx/commit/5f61457d4f8ab9daff042c168c34fced70f2fda2 --- diff --git a/docs/libraries/project-docs/developer-guide.md b/docs/libraries/project-docs/developer-guide.md index febf112..f0dd94f 100644 --- a/docs/libraries/project-docs/developer-guide.md +++ b/docs/libraries/project-docs/developer-guide.md @@ -266,11 +266,11 @@ The tests can also be filtered based on xunit trait attributes defined in [`Micr ```cs [OuterLoop()] ``` -Tests marked as `OuterLoop` are for scenarios that don't need to run every build. They may take longer than normal tests, cover seldom hit code paths, or require special setup or resources to execute. These tests are excluded by default when testing through `dotnet msbuild` but can be enabled manually by adding the `-outerloop` switch or `/p:OuterLoop=true` e.g. +Tests marked as `OuterLoop` are for scenarios that don't need to run every build. They may take longer than normal tests, cover seldom hit code paths, or require special setup or resources to execute. These tests are excluded by default when testing through `dotnet msbuild` but can be enabled manually by adding the `-testscope outerloop` switch or `/p:TestScope=outerloop` e.g. ```cmd -build -test -outerloop -cd src/System.Text.RegularExpressions/tests && dotnet msbuild /t:RebuildAndTest /p:OuterLoop=true +build -test -testscope outerloop +cd src/System.Text.RegularExpressions/tests && dotnet msbuild /t:RebuildAndTest /p:TestScope=outerloop ``` #### PlatformSpecificAttribute