summaryrefslogtreecommitdiff
path: root/tests/issues.targets
diff options
context:
space:
mode:
authorEgor Chesakov <Egor.Chesakov@microsoft.com>2019-01-11 14:45:25 -0800
committerEgor Chesakov <Egor.Chesakov@microsoft.com>2019-01-16 09:07:25 -0800
commit81e110d5557e5aa3cc21a9d8c32114bfa2ed0836 (patch)
treedd70cd59331cce9fd6b9f88d6e7ec5c18137e9ed /tests/issues.targets
parent6515cf8e1a3027cd81c6eb2a9307ca7259b46730 (diff)
downloadcoreclr-81e110d5557e5aa3cc21a9d8c32114bfa2ed0836.tar.gz
coreclr-81e110d5557e5aa3cc21a9d8c32114bfa2ed0836.tar.bz2
coreclr-81e110d5557e5aa3cc21a9d8c32114bfa2ed0836.zip
Make JIT\superpmi\superpmicollect compatible with Helix
Related issue: https://github.com/dotnet/coreclr/issues/21698
Diffstat (limited to 'tests/issues.targets')
-rw-r--r--tests/issues.targets15
1 files changed, 11 insertions, 4 deletions
diff --git a/tests/issues.targets b/tests/issues.targets
index 5df62e4ded..e6b6203546 100644
--- a/tests/issues.targets
+++ b/tests/issues.targets
@@ -780,9 +780,6 @@
<!-- The following are tests that fail when building tests against packages -->
<ItemGroup Condition="'$(XunitTestBinBase)' != '' and '$(BuildTestsAgainstPackages)' == 'true'">
- <ExcludeList Include="$(XunitTestBinBase)/JIT/superpmi/superpmicollect/*">
- <Issue>needs triage</Issue>
- </ExcludeList>
<ExcludeList Include="$(XunitTestBinBase)/JIT/Performance/CodeQuality/BenchmarksGame/k-nucleotide/k-nucleotide-1/k-nucleotide-1*">
<Issue>9314</Issue>
</ExcludeList>
@@ -2112,5 +2109,15 @@
<Issue>Bug</Issue>
</ExcludeList>
</ItemGroup>
-
+
+ <!-- runtest.proj finds all the *.cmd/*.sh scripts in a test folder and creates corresponding test methods.
+ Exclude these scripts to avoid creating such methods for the superpmicollect dependent test projects
+ and running them separately from superpmicollect test. -->
+
+ <ItemGroup Condition="'$(XunitTestBinBase)' != ''">
+ <ExcludeList Include="$(XunitTestBinBase)/JIT/superpmi/superpmicollect/*" Exclude="$(XunitTestBinBase)/JIT/superpmi/superpmicollect/superpmicollect.*">
+ <Issue>Do not run these scripts separately from superpmicollect test</Issue>
+ </ExcludeList>
+ </ItemGroup>
+
</Project>