|
32 | 32 | <DisabledProjects Include="Loader\classloader\generics\regressions\DD117522\Test.csproj" />
|
33 | 33 | <DisabledProjects Include="Loader\classloader\generics\GenericMethods\VSW491668.csproj" /> <!-- issue 5501 -->
|
34 | 34 | </ItemGroup>
|
35 |
| - |
36 |
| - <ItemGroup> |
| 35 | + |
| 36 | + <!-- Unix builds do not support subgroups --> |
| 37 | + <ItemGroup Condition="$(__BuildOS) != 'Windows_NT' And $(__TestGroupToBuild) == '1' And $(TestBuildSlice) == '1'"> |
37 | 38 | <Project Include="*\**\*.csproj" Exclude="@(DisabledProjects)">
|
38 | 39 | <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties>
|
39 | 40 | </Project>
|
40 | 41 | <Project Include="*\**\*.ilproj" Exclude="@(DisabledProjects)">
|
41 | 42 | <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties>
|
42 | 43 | </Project>
|
43 | 44 | </ItemGroup>
|
| 45 | + |
| 46 | + <!-- Test build is divided in slices which can be created within Test Group |
| 47 | + Priority 0 tests are build using Test Group 1 with 2 subgroups or slices --> |
| 48 | + <ItemGroup Condition="$(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '1' And $(TestBuildSlice) == '1'"> |
| 49 | + <Project Include="*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 50 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 51 | + </Project> |
| 52 | + </ItemGroup> |
| 53 | + |
| 54 | + <ItemGroup Condition="$(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '1' And $(TestBuildSlice) == '2'"> |
| 55 | + <Project Include="*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 56 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 57 | + </Project> |
| 58 | + </ItemGroup> |
| 59 | + |
| 60 | + <!-- Test build is divided in slices which can be created within Test Group |
| 61 | + Priority 1 or higher tests are build using Test Group 2 with 16 subgroups or slices --> |
| 62 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '1')"> |
| 63 | + <Project Include="baseservices\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 64 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 65 | + </Project> |
| 66 | + <Project Include="Common\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 67 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 68 | + </Project> |
| 69 | + <Project Include="baseservices\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 70 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 71 | + </Project> |
| 72 | + <Project Include="Common\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 73 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 74 | + </Project> |
| 75 | + </ItemGroup> |
| 76 | + |
| 77 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '2')"> |
| 78 | + <Project Include="CoreMangLib\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 79 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 80 | + </Project> |
| 81 | + <Project Include="CoreMangLib\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 82 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 83 | + </Project> |
| 84 | + </ItemGroup> |
| 85 | + |
| 86 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '3')"> |
| 87 | + <Project Include="E*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 88 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 89 | + </Project> |
| 90 | + <Project Include="GC\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 91 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 92 | + </Project> |
| 93 | + <Project Include="Interop\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 94 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 95 | + </Project> |
| 96 | + <Project Include="E*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 97 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 98 | + </Project> |
| 99 | + <Project Include="GC\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 100 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 101 | + </Project> |
| 102 | + <Project Include="Interop\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 103 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 104 | + </Project> |
| 105 | + </ItemGroup> |
| 106 | + |
| 107 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '4')"> |
| 108 | + <Project Include="JIT\B*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 109 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 110 | + </Project> |
| 111 | + <Project Include="JIT\C*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 112 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 113 | + </Project> |
| 114 | + <Project Include="JIT\Directed\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 115 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 116 | + </Project> |
| 117 | + </ItemGroup> |
| 118 | + |
| 119 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '5')"> |
| 120 | + <Project Include="JIT\B*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 121 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 122 | + </Project> |
| 123 | + <Project Include="JIT\C*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 124 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 125 | + </Project> |
| 126 | + <Project Include="JIT\Directed\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 127 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 128 | + </Project> |
| 129 | + </ItemGroup> |
| 130 | + |
| 131 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '6')"> |
| 132 | + <Project Include="JIT\Generics\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 133 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 134 | + </Project> |
| 135 | + <Project Include="JIT\*Intrinsics\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 136 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 137 | + </Project> |
| 138 | + <Project Include="JIT\Generics\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 139 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 140 | + </Project> |
| 141 | + <Project Include="JIT\*Intrinsics\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 142 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 143 | + </Project> |
| 144 | + </ItemGroup> |
| 145 | + |
| 146 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '7')"> |
| 147 | + <Project Include="JIT\IL_Conformance\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 148 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 149 | + </Project> |
| 150 | + <Project Include="JIT\IL_Conformance\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 151 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 152 | + </Project> |
| 153 | + </ItemGroup> |
| 154 | + |
| 155 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '8')"> |
| 156 | + <Project Include="JIT\jit64\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 157 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 158 | + </Project> |
| 159 | + <Project Include="JIT\jit64\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 160 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 161 | + </Project> |
| 162 | + </ItemGroup> |
| 163 | + |
| 164 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '9')"> |
| 165 | + <Project Include="JIT\Methodical\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 166 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 167 | + </Project> |
| 168 | + </ItemGroup> |
| 169 | + |
| 170 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '10')"> |
| 171 | + <Project Include="JIT\Methodical\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 172 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 173 | + </Project> |
| 174 | + </ItemGroup> |
| 175 | + |
| 176 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '11')"> |
| 177 | + <Project Include="JIT\opt\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 178 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 179 | + </Project> |
| 180 | + <Project Include="JIT\Performance\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 181 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 182 | + </Project> |
| 183 | + <Project Include="JIT\S*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 184 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 185 | + </Project> |
| 186 | + <Project Include="JIT\opt\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 187 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 188 | + </Project> |
| 189 | + <Project Include="JIT\Performance\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 190 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 191 | + </Project> |
| 192 | + <Project Include="JIT\S*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 193 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 194 | + </Project> |
| 195 | + </ItemGroup> |
| 196 | + |
| 197 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '12')"> |
| 198 | + <Project Include="JIT\R*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 199 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 200 | + </Project> |
| 201 | + </ItemGroup> |
| 202 | + |
| 203 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '13')"> |
| 204 | + <Project Include="JIT\R*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 205 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 206 | + </Project> |
| 207 | + </ItemGroup> |
| 208 | + |
| 209 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '14')"> |
| 210 | + <Project Include="Loader\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 211 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 212 | + </Project> |
| 213 | + </ItemGroup> |
| 214 | + |
| 215 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '15')"> |
| 216 | + <Project Include="Loader\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 217 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 218 | + </Project> |
| 219 | + </ItemGroup> |
| 220 | + |
| 221 | + <ItemGroup Condition="($(__BuildOS) == 'Windows_NT' And $(__TestGroupToBuild) == '2' And $(TestBuildSlice) == '16')"> |
| 222 | + <Project Include="m*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 223 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 224 | + </Project> |
| 225 | + <Project Include="p*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 226 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 227 | + </Project> |
| 228 | + <Project Include="r*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 229 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 230 | + </Project> |
| 231 | + <Project Include="s*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 232 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 233 | + </Project> |
| 234 | + <Project Include="t*\**\*.csproj" Exclude="@(DisabledProjects)"> |
| 235 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 236 | + </Project> |
| 237 | + <Project Include="m*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 238 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 239 | + </Project> |
| 240 | + <Project Include="p*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 241 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 242 | + </Project> |
| 243 | + <Project Include="r*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 244 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 245 | + </Project> |
| 246 | + <Project Include="s*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 247 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 248 | + </Project> |
| 249 | + <Project Include="t*\**\*.ilproj" Exclude="@(DisabledProjects)"> |
| 250 | + <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties> |
| 251 | + </Project> |
| 252 | + </ItemGroup> |
| 253 | + |
44 | 254 | </Target>
|
45 | 255 |
|
46 | 256 | <Import Project="..\dir.traversal.targets" />
|
|
0 commit comments