summaryrefslogtreecommitdiff
path: root/tests/runtest.proj
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2018-09-15 08:57:22 -0700
committerGitHub <noreply@github.com>2018-09-15 08:57:22 -0700
commitd47162260d4e202bb06fcc7449fadbfd2955b83b (patch)
tree0784a1cc13c3e86ebdf29017f633ed3bc8c4cbec /tests/runtest.proj
parent799508eb77045482d1e2bf13c6696c6b248de0b6 (diff)
downloadcoreclr-d47162260d4e202bb06fcc7449fadbfd2955b83b.tar.gz
coreclr-d47162260d4e202bb06fcc7449fadbfd2955b83b.tar.bz2
coreclr-d47162260d4e202bb06fcc7449fadbfd2955b83b.zip
Layout native test components correctly on unix (#19918)
* Enable native test build and add skipmanaged * Fix adding native components to test dir * Clean pri1/pri0 builds with native lib copy This change disables the build of several tests which have native dependencies; however, would not build the native dependencies on unix. At copy time this would result in a build-test failure. In addition, it fixes, adding executables and dynamic/static libraries to the test's location. It has been tested with build-test.sh priority1. * Fix comment wording * Remove buildagainstpackage arg * Fix default clang version * Clean pri1 run OSX * Correct test count on unix * Address typo * Merge runtest.proj
Diffstat (limited to 'tests/runtest.proj')
-rw-r--r--tests/runtest.proj6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/runtest.proj b/tests/runtest.proj
index 3a04064ddb..2db2918353 100644
--- a/tests/runtest.proj
+++ b/tests/runtest.proj
@@ -71,7 +71,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;= 12000" Text="Unexpected test count. Expected &gt; 12000, found $(TestCount).'" />
+ <Error Condition="'$(CLRTestPriorityToBuild)' == '1' and '$(TestCount)' &lt;= 11500" Text="Unexpected test count. Expected &gt; 1150, found $(TestCount).'" />
<Error Condition="'$(CLRTestPriorityToBuild)' != '0' and '$(CLRTestPriorityToBuild)' != '1'" Text="Unknown priority $(CLRTestPriorityToBuild)" />
</Target>
@@ -313,10 +313,6 @@ namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").
</AllCommands>
<AllXUnitFacts Include= "%(AllCommands._XunitFact)" />
</ItemGroup>
-
- <Message Text="HasExcludes: $(HaveExcludes)" Importance="high"/>
- <Message Text="CanonicalExcludeList: @(CanonicalExcludeList)" Importance="high"/>
-
</Target>
<Target Name="CreateAllWrappers" DependsOnTargets="GetListOfTestCmds;FindCmdDirectories">