From 89274662b3a55974691e058229033c514476fd34 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Tue, 21 May 2019 01:04:24 +0200 Subject: [PATCH] Update docs with Outerloop changes Commit migrated from https://github.com/dotnet/corefx/commit/5f61457d4f8ab9daff042c168c34fced70f2fda2 --- docs/libraries/project-docs/developer-guide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.7.4