Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Hays <ianha@microsoft.com>2016-01-29 21:09:15 +0300
committerIan Hays <ianha@microsoft.com>2016-01-29 21:09:15 +0300
commitbddaf7d9e69b42381cae7eb4a9c3e4deb456c1b6 (patch)
tree828be88f227043efcf9abb11d615c4bb4d907ff2 /Documentation/building
parentde8f148b83fd3710ef03e03ecf2afeb216888188 (diff)
Update windows docs with OuterLoop instructions
https://github.com/dotnet/corefx/pull/1449 changed the format of the property to run OuterLoop tests. This commit updates the docs to reflect those changes.
Diffstat (limited to 'Documentation/building')
-rw-r--r--Documentation/building/windows-instructions.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/building/windows-instructions.md b/Documentation/building/windows-instructions.md
index 1cf9b44e6e..503bd8d79c 100644
--- a/Documentation/building/windows-instructions.md
+++ b/Documentation/building/windows-instructions.md
@@ -48,7 +48,7 @@ msbuild /t:BuildAndTest (or /t:Test to just run the tests if the binaries are al
It is possible to pass parameters to the underlying xunit runner via the `XunitOptions` parameter, e.g.:
```cmd
-msbuild /t:Test "/p:XunitOptions=-class Test.ClassUnderTests -notrait category=outerloop"
+msbuild /t:Test "/p:XunitOptions=-class Test.ClassUnderTests"
```
There may be multiple projects in some directories so you may need to specify the path to a specific test project to get it to build and run the tests.
@@ -61,7 +61,7 @@ _**`OuterLoop`:**_
This attribute applies the 'outerloop' category; to run outerloop tests, use the following commandline
```cmd
xunit.console.netcore.exe *.dll -trait category=outerloop
-build.cmd *.csproj /p:RunTestsWithCategories=OuterLoop
+build.cmd *.csproj /p:WithCategories=OuterLoop
```
_**`PlatformSpecific(Xunit.PlatformID platforms)`:**_