summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2017-07-21 12:49:18 -0700
committerGitHub <noreply@github.com>2017-07-21 12:49:18 -0700
commit7b213c4c336383d281fcc3d3e7d811da54cb42ec (patch)
tree68c4c402180117c485dc9c9d6e550b4baa2624b7 /Documentation
parentc5b114d739f4f2247bf12eabccdc21c5d23e8848 (diff)
downloadcoreclr-7b213c4c336383d281fcc3d3e7d811da54cb42ec.tar.gz
coreclr-7b213c4c336383d281fcc3d3e7d811da54cb42ec.tar.bz2
coreclr-7b213c4c336383d281fcc3d3e7d811da54cb42ec.zip
Updated the path to built test binaries in examples
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/building/windows-test-instructions.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/building/windows-test-instructions.md b/Documentation/building/windows-test-instructions.md
index 6d90826589..bcad244569 100644
--- a/Documentation/building/windows-test-instructions.md
+++ b/Documentation/building/windows-test-instructions.md
@@ -71,15 +71,15 @@ If you wish to re-run a failed test, please follow the following steps:
1. Set an environment variable, `CORE_ROOT`, pointing to the path to product binaries that was passed to runtest.cmd.
For example using a checked build the location would be: `<repo_root>\bin\tests\Windows_NT.x64.Checked\Tests\Core_Root`
-2. Next, run the failed test, the command to which is also present in the test report for a failed test. It will be something like `<repo_root>\binaries\tests\x64\debug\Exceptions\Finalization\Finalizer.cmd`.
+2. Next, run the failed test, the command to which is also present in the test report for a failed test. It will be something like `<repo_root>\bin\tests\Windows_NT.x64.Checked\Exceptions\Finalization\Finalizer.cmd`.
If you wish to run the test under a debugger (e.g. [WinDbg](http://msdn.microsoft.com/en-us/library/windows/hardware/ff551063(v=vs.85).aspx)), append `-debug <debuggerFullPath>` to the test command. For example:
- <repo_root>\binaries\tests\x64\debug\Exceptions\Finalization\Finalizer.cmd -debug <debuggerFullPath>
+ <repo_root>\bin\tests\Windows_NT.x64.Checked\Exceptions\Finalization\Finalizer.cmd -debug <debuggerFullPath>
**Modifying a test**
-If test changes are needed, make the change and build the test project. This will binplace the binaries in test binaries folder (e.g. `<repo_root>\binaries\tests\x64\debug\Exceptions\Finalization`). At this point, follow the steps to re-run a failed test to re-run the modified test.
+If test changes are needed, make the change and build the test project. This will binplace the binaries in test binaries folder (e.g. `<repo_root>\bin\tests\Windows_NT.x64.Checked\Exceptions\Finalization`). At this point, follow the steps to re-run a failed test to re-run the modified test.
**Authoring Tests (in VS)**