in e2etest/GuestProxyAgentTest/Utilities/TestMapReader.cs [11:35]
static string TestMapFile(bool test_arm64 = false)
{
if (test_arm64)
{
if (Constants.IS_WINDOWS())
{
return "Test-Map-Arm64.yml";
}
else
{
return "Test-Map-Linux-Arm64.yml";
}
}
else
{
if (Constants.IS_WINDOWS())
{
return "Test-Map.yml";
}
else
{
return "Test-Map-Linux.yml";
}
}
}