Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 5316416

Browse files
committed
Fix & Re-enable JIT CheckProjects test
1 parent 51329bd commit 5316416

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/issues.targets

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,6 @@
184184
<ExcludeList Include="$(XunitTestBinBase)\Loader\classloader\TypeGeneratorTests\TypeGeneratorTest683\Generated683\*">
185185
<Issue>6707</Issue>
186186
</ExcludeList>
187-
<ExcludeList Include="$(XunitTestBinBase)\JIT\CheckProjects\CheckProjects\*">
188-
<Issue></Issue>
189-
</ExcludeList>
190187
</ItemGroup>
191188

192189
<!-- The following are x86 failures -->

tests/src/JIT/CheckProjects/CheckProjects.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,11 @@ private static int Main(string[] args)
8686

8787
foreach (FileInfo f in projectRootDir.GetFiles("*.*proj", SearchOption.AllDirectories))
8888
{
89-
ParseAndUpdateProj(f.FullName, s_tryAndFix);
89+
if (!f.FullName.Contains("JIT\\config") && !f.FullName.Contains("JIT/config"))
90+
{
91+
ParseAndUpdateProj(f.FullName, s_tryAndFix);
92+
}
93+
9094
}
9195

9296
Console.WriteLine("{0} projects, {1} needed fixes, {2} fixes deferred, {3} were fixed",

tests/testsFailingOutsideWindows.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,3 @@ Loader/classloader/TypeGeneratorTests/TypeGeneratorTest614/Generated614/Generate
7777
Loader/classloader/TypeGeneratorTests/TypeGeneratorTest681/Generated681/Generated681.sh
7878
Loader/classloader/TypeGeneratorTests/TypeGeneratorTest682/Generated682/Generated682.sh
7979
Loader/classloader/TypeGeneratorTests/TypeGeneratorTest683/Generated683/Generated683.sh
80-
JIT/CheckProjects/CheckProjects/CheckProjects.sh

0 commit comments

Comments
 (0)