summaryrefslogtreecommitdiff
path: root/tests/runtest.proj
diff options
context:
space:
mode:
authorBruce Forstall <Bruce_Forstall@msn.com>2018-10-10 12:14:21 -0700
committerBruce Forstall <Bruce_Forstall@msn.com>2018-10-10 12:14:21 -0700
commit45f8fc05f68e46e0f81dfea9c4e638443177053c (patch)
tree116dcec59e95f96ff9fb5263ea684910e370d7c6 /tests/runtest.proj
parentcfe51dd00e069e9fcbee6843e0eee2e80c9b3bd1 (diff)
downloadcoreclr-45f8fc05f68e46e0f81dfea9c4e638443177053c.tar.gz
coreclr-45f8fc05f68e46e0f81dfea9c4e638443177053c.tar.bz2
coreclr-45f8fc05f68e46e0f81dfea9c4e638443177053c.zip
Reduce the number of expected Pri-1 tests
The number has shrunk lately due to removing CoreMangLib tests.
Diffstat (limited to 'tests/runtest.proj')
-rw-r--r--tests/runtest.proj4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtest.proj b/tests/runtest.proj
index fc81b1528a..9c541f67cf 100644
--- a/tests/runtest.proj
+++ b/tests/runtest.proj
@@ -59,7 +59,7 @@
to only build the Priority 0 tests. This target is run after a test build to verify that the basic number of tests that were
built is basically what was expected. When this was written, there were about 2500 Priority 0 tests and about 12270 Priority 1
tests (differing slightly based on platform). We currently check that the number of Priority 0 tests is greater than 2000 and
- less than 3000, and the number of Priority 1 tests is greater than 11000.
+ less than 3000, and the number of Priority 1 tests is greater than 10000.
-->
<Target Name="CheckTestBuild" DependsOnTargets="GetListOfTestCmds">
<Error Condition="!Exists('$(XunitTestBinBase)')"
@@ -73,7 +73,7 @@
<Error Condition="'$(CLRTestPriorityToBuild)' == '0' and '$(TestCount)' &lt;= 2000" Text="Unexpected test count. Expected &gt; 2000, found $(TestCount).'" />
<Error Condition="'$(CLRTestPriorityToBuild)' == '0' and '$(TestCount)' &gt;= 3000" Text="Unexpected test count. Expected &lt; 3000, found $(TestCount).'" />
- <Error Condition="'$(CLRTestPriorityToBuild)' == '1' and '$(TestCount)' &lt;= 11000" Text="Unexpected test count. Expected &gt; 11000, found $(TestCount).'" />
+ <Error Condition="'$(CLRTestPriorityToBuild)' == '1' and '$(TestCount)' &lt;= 10000" Text="Unexpected test count. Expected &gt; 10000, found $(TestCount).'" />
<Error Condition="'$(CLRTestPriorityToBuild)' != '0' and '$(CLRTestPriorityToBuild)' != '1'" Text="Unknown priority $(CLRTestPriorityToBuild)" />
</Target>