Changed RuntimeName to the existing RuntimeFlavor property. (#33559)
authorNathan Ricci <naricc@microsoft.com>
Mon, 16 Mar 2020 21:07:31 +0000 (17:07 -0400)
committerGitHub <noreply@github.com>
Mon, 16 Mar 2020 21:07:31 +0000 (17:07 -0400)
Change RuntimeName to the exiting RuntimeFlavor property.

src/coreclr/build-test.sh
src/coreclr/tests/issues.targets

index 5e1dbf2..20755e3 100755 (executable)
@@ -6,9 +6,9 @@ build_test_wrappers()
         echo "${__MsgPrefix}Creating test wrappers..."
 
         if [[ $__Mono -eq 1 ]]; then
-            export RuntimeName="mono"
+            export RuntimeFlavor="mono"
         else
-            export RuntimeName="coreclr"
+            export RuntimeFlavor="coreclr"
         fi
 
         __Exclude="${__ProjectDir}/tests/issues.targets"
index 0d6725e..47b7d78 100644 (file)
     </ItemGroup>
 
     <!-- Known failures for mono runtime on *all* architectures/operating systems -->
-    <ItemGroup Condition="'$(RuntimeName)' == 'mono'" >
+    <ItemGroup Condition="'$(RuntimeFlavor)' == 'mono'" >
        <ExcludeList Include="$(XunitTestBinBase)/GC/API/GC/AddMemoryPressureTest/AddMemoryPressureTest/**">
             <Issue>needs triage</Issue>
         </ExcludeList>