From: Lakshmi Priya Date: Tue, 2 Aug 2016 21:15:45 +0000 (-0700) Subject: Update windows-test-instructions.md X-Git-Tag: submit/tizen/20210909.063632~11030^2~9741 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26bf2da989ae05d01145740b061ff132cf9b7748;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Update windows-test-instructions.md Commit migrated from https://github.com/dotnet/coreclr/commit/f327cbfa24d1ed49650104a277631ca600fa8bb6 --- diff --git a/docs/coreclr/building/windows-test-instructions.md b/docs/coreclr/building/windows-test-instructions.md index 0e3bc26..0c5aa76 100644 --- a/docs/coreclr/building/windows-test-instructions.md +++ b/docs/coreclr/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.