Update ToolchainUtil to properly load and use the available execution
platforms, and correctly merge together the results from TRF.
Part of #4442.
Change-Id: I31d83fa73a93d39a0e18d05a43a1c8666ac5a2d2
PiperOrigin-RevId: 187324257
diff --git a/src/test/java/com/google/devtools/build/lib/skyframe/ToolchainResolutionFunctionTest.java b/src/test/java/com/google/devtools/build/lib/skyframe/ToolchainResolutionFunctionTest.java
index 0194819..702929b 100644
--- a/src/test/java/com/google/devtools/build/lib/skyframe/ToolchainResolutionFunctionTest.java
+++ b/src/test/java/com/google/devtools/build/lib/skyframe/ToolchainResolutionFunctionTest.java
@@ -88,7 +88,7 @@
ToolchainResolutionValue toolchainResolutionValue = result.get(key);
assertThat(toolchainResolutionValue.availableToolchainLabels())
- .containsExactly(macPlatform, makeLabel("//toolchain:toolchain_2_impl"));
+ .containsExactly(MAC_CTKEY, makeLabel("//toolchain:toolchain_2_impl"));
}
@Test
@@ -118,9 +118,9 @@
ToolchainResolutionValue toolchainResolutionValue = result.get(key);
assertThat(toolchainResolutionValue.availableToolchainLabels())
.containsExactly(
- linuxPlatform,
+ LINUX_CTKEY,
makeLabel("//extra:extra_toolchain_impl"),
- macPlatform,
+ MAC_CTKEY,
makeLabel("//toolchain:toolchain_2_impl"));
}
@@ -146,37 +146,27 @@
new EqualsTester()
.addEqualityGroup(
ToolchainResolutionValue.create(
- ImmutableMap.<PlatformInfo, Label>builder()
- .put(linuxPlatform, makeLabel("//test:toolchain_impl_1"))
- .build()),
+ ImmutableMap.of(LINUX_CTKEY, makeLabel("//test:toolchain_impl_1"))),
ToolchainResolutionValue.create(
- ImmutableMap.<PlatformInfo, Label>builder()
- .put(linuxPlatform, makeLabel("//test:toolchain_impl_1"))
- .build()))
+ ImmutableMap.of(LINUX_CTKEY, makeLabel("//test:toolchain_impl_1"))))
// Different execution platform, same label.
.addEqualityGroup(
ToolchainResolutionValue.create(
- ImmutableMap.<PlatformInfo, Label>builder()
- .put(macPlatform, makeLabel("//test:toolchain_impl_1"))
- .build()))
+ ImmutableMap.of(MAC_CTKEY, makeLabel("//test:toolchain_impl_1"))))
// Same execution platform, different label.
.addEqualityGroup(
ToolchainResolutionValue.create(
- ImmutableMap.<PlatformInfo, Label>builder()
- .put(linuxPlatform, makeLabel("//test:toolchain_impl_2"))
- .build()))
+ ImmutableMap.of(LINUX_CTKEY, makeLabel("//test:toolchain_impl_2"))))
// Different execution platform, different label.
.addEqualityGroup(
ToolchainResolutionValue.create(
- ImmutableMap.<PlatformInfo, Label>builder()
- .put(macPlatform, makeLabel("//test:toolchain_impl_2"))
- .build()))
+ ImmutableMap.of(MAC_CTKEY, makeLabel("//test:toolchain_impl_2"))))
// Multiple execution platforms.
.addEqualityGroup(
ToolchainResolutionValue.create(
- ImmutableMap.<PlatformInfo, Label>builder()
- .put(linuxPlatform, makeLabel("//test:toolchain_impl_1"))
- .put(macPlatform, makeLabel("//test:toolchain_impl_1"))
+ ImmutableMap.<ConfiguredTargetKey, Label>builder()
+ .put(LINUX_CTKEY, makeLabel("//test:toolchain_impl_1"))
+ .put(MAC_CTKEY, makeLabel("//test:toolchain_impl_1"))
.build()));
}
}