summaryrefslogtreecommitdiff
path: root/Documentation/building/windows-test-instructions.md
diff options
context:
space:
mode:
authorLakshmi Priya <Priya91@users.noreply.github.com>2016-08-02 14:15:45 -0700
committerGitHub <noreply@github.com>2016-08-02 14:15:45 -0700
commitf327cbfa24d1ed49650104a277631ca600fa8bb6 (patch)
tree96bca21f0317ffcf2fad682fc2e37a2aa6b5894c /Documentation/building/windows-test-instructions.md
parenta0d8423deb372c229d255831da47b333a739b83b (diff)
downloadcoreclr-f327cbfa24d1ed49650104a277631ca600fa8bb6.tar.gz
coreclr-f327cbfa24d1ed49650104a277631ca600fa8bb6.tar.bz2
coreclr-f327cbfa24d1ed49650104a277631ca600fa8bb6.zip
Update windows-test-instructions.md
Diffstat (limited to 'Documentation/building/windows-test-instructions.md')
-rw-r--r--Documentation/building/windows-test-instructions.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/building/windows-test-instructions.md b/Documentation/building/windows-test-instructions.md
index 0e3bc26d1e..0c5aa76c10 100644
--- a/Documentation/building/windows-test-instructions.md
+++ b/Documentation/building/windows-test-instructions.md
@@ -5,23 +5,23 @@ Building and running tests on Windows
To build the tests simply navigate to the tests directory above the repo and run,
- C:\git\coreclr>tests\buildtest.cmd
+ C:\git\coreclr>build-test.cmd
*Cleaning Tests*
**Note:** Cleaning should be done before all tests to be sure that the test assets are initialized correctly. To do a clean build of the tests, in a clean command prompt, issue the following command:
- C:\git\coreclr>tests\buildtest.cmd clean
+ C:\git\coreclr>build-test.cmd -rebuild
*Building tests that will be precompiled*
- C:\git\coreclr>tests\buildtest.cmd crossgen
+ C:\git\coreclr>build-test.cmd crossgen
This will use crossgen.exe to precompile the test executables before they are executed.
*Building Other Priority Tests*
- C:\git\coreclr>tests\buildtest.cmd priority 2
+ C:\git\coreclr>build-test.cmd -priority=2
The number '2' is just an example. The default value (if no priority is specified) is 0. To clarify, if '2' is specified, all tests with CLRTestPriorty 0, 1 AND 2 will be built and consequently run.
@@ -29,7 +29,7 @@ The number '2' is just an example. The default value (if no priority is specifie
To run a clean, priority 1, crossgen test pass:
- C:\git\coreclr>tests\buildtest.cmd clean crossgen priority 1
+ C:\git\coreclr>build-test.cmd -rebuild crossgen -priority=1
**buildtest /?** will list additional supported parameters.