summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorRama krishnan Raghupathy <ramarag@microsoft.com>2016-05-13 22:32:52 -0700
committerRama krishnan Raghupathy <ramarag@microsoft.com>2016-05-13 22:32:52 -0700
commit04a5d3bafeaa5d67a2d91b9753b540c6ccd36931 (patch)
tree3e557a16db1183901f595421d4cce54bf7794185 /Documentation
parent97b4ff0b438261ba11b357008630076054a6f25d (diff)
parent73c24cbc657182e2c8c82be18222d4ac0ec788a9 (diff)
downloadcoreclr-04a5d3bafeaa5d67a2d91b9753b540c6ccd36931.tar.gz
coreclr-04a5d3bafeaa5d67a2d91b9753b540c6ccd36931.tar.bz2
coreclr-04a5d3bafeaa5d67a2d91b9753b540c6ccd36931.zip
Merge pull request #4927 from ramarag/ModifyBuildOnly
Removing Redundant Projects that are BuildOnly:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/building/test-configuration.md2
-rw-r--r--Documentation/project-docs/tests.md33
2 files changed, 1 insertions, 34 deletions
diff --git a/Documentation/building/test-configuration.md b/Documentation/building/test-configuration.md
index a1e67a6fef..931a540adb 100644
--- a/Documentation/building/test-configuration.md
+++ b/Documentation/building/test-configuration.md
@@ -10,7 +10,7 @@
* Run Only
> `<CLRTestKind>RunOnly</CLRTestKind>`
- * Will only execute another assembly.
+ * Can use Ouput of Build and Run Project with different command line arguments.
* Build and Run
> `<CLRTestKind>BuildAndRun</CLRTestKind>`
diff --git a/Documentation/project-docs/tests.md b/Documentation/project-docs/tests.md
deleted file mode 100644
index ca6a5ef740..0000000000
--- a/Documentation/project-docs/tests.md
+++ /dev/null
@@ -1,33 +0,0 @@
-
-### Kinds of Build Properties ###
-* Build Only
-> `<CLRTestKind>BuildOnly</CLRTestKind>`
-
- * Builds an executable.
- * Will not execute it.
-
-* Run Only
-> `<CLRTestKind>RunOnly</CLRTestKind>`
-
- * Will only execute another assembly.
-* Build and Run
-> `<CLRTestKind>BuildAndRun</CLRTestKind>`
-
- * Builds an executable.
- * Will execute said executable.
-* Shared Libraries
-> `<CLRTestKind>SharedLibrary</CLRTestKind>`
-
- * For building libraries common to zero or more tests.
-
-
-By default (i.e. if not specified explicitly) a project file is BuildAndRun.
-
-### Priority ###
-Testcases are categorized by their priority levels. The most important subset should be and is the smallest subset. This subset is called priority 0.
- * By default, a testcase is priority 0. You must elect to de-prioritize a test.
- * To de-prioritize a test, add a property _CLRTestPriority_ to the test's project file.
-> `<CLRTestPriority>2</CLRTestPriority>`
- * Lower priority values are always run in conjunction when running higher priority value tests. I.e. if a developer elects to do a priority 2 test run, then all priority 0, 1 and 2 tests are run.
-
-