mirror of https://github.com/apache/cloudstack.git
kvm: skip test that can't run and pass on M1 mac (#6537)
This fixes the build issue on M1 mac/osx. Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
67e941f690
commit
3d316546bf
|
|
@ -5590,6 +5590,9 @@ public class LibvirtComputingResourceTest {
|
|||
|
||||
@Test
|
||||
public void getMemoryFreeInKBsTestDomainReturningIncompleteArray() throws LibvirtException {
|
||||
if (!System.getProperty("os.name").equals("Linux")) {
|
||||
return;
|
||||
}
|
||||
LibvirtComputingResource libvirtComputingResource = new LibvirtComputingResource();
|
||||
|
||||
MemoryStatistic[] mem = createMemoryStatisticFreeMemory100();
|
||||
|
|
|
|||
Loading…
Reference in New Issue