summaryrefslogtreecommitdiff
path: root/tests/dir.props
diff options
context:
space:
mode:
authorKoundinya Veluri <kouvel@microsoft.com>2015-09-30 12:20:52 -0700
committerBryan P. Arant <bryanar@microsoft.com>2015-10-15 03:15:54 +0000
commit4cf34fe7988ad04eaa7f699a5d0faea8a8394f95 (patch)
tree29cc1fd9de029a9b8a1c0e2f7e57e5a3e568667a /tests/dir.props
parent06579986abb889d2a509be7e2c6370b4fa363fd6 (diff)
downloadcoreclr-4cf34fe7988ad04eaa7f699a5d0faea8a8394f95.tar.gz
coreclr-4cf34fe7988ad04eaa7f699a5d0faea8a8394f95.tar.bz2
coreclr-4cf34fe7988ad04eaa7f699a5d0faea8a8394f95.zip
Changes to Test Infrastructure
The following changes are being submitted in order to prepare for a large collection of tests to be ported from the internal legacy test tree. - Adds "build kinds" to the test tree. - Adds some documentation for the test tree - Adds a Test Priority feature (see documentation Documentation/project-docs/tests.md for more information. - Dropped the cs_template.csproj types and converted to individual CSProject files.
Diffstat (limited to 'tests/dir.props')
-rw-r--r--tests/dir.props15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/dir.props b/tests/dir.props
index df93e6598a..c59e96318f 100644
--- a/tests/dir.props
+++ b/tests/dir.props
@@ -70,4 +70,19 @@
</PropertyGroup>
+ <!-- Which tests shall we build? Default: Priority 0 tests.
+ At the command-line, the user can specify /p:CLRTestPriorityToBuild=2 (for example), and
+ all tests with CLRTestPriority 2, 1 AND 0 will build.
+
+ Consequently, specifying CLRTestPriorityToBuild=1 will build all tests with CLRTestPriority 1 and 0.
+
+ CLRTestPriority = 0 will build only priority 0 cases.
+
+ In other words, the CLRTestPriority cases of 0 are *essential* testcases. The higher the value,
+ the less priority we give them.
+ -->
+ <PropertyGroup>
+ <CLRTestPriorityToBuild>1</CLRTestPriorityToBuild>
+ </PropertyGroup>
+
</Project>