Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static void setUp() {
Connect conn = new Connect("qemu:///system", false);
conn.getVersion();
libVirtAvailable = true;
} catch (LibvirtException ignored) {}
} catch (LibvirtException | LinkageError ignored) {}
Comment thread
DaanHoogland marked this conversation as resolved.
Outdated
Comment thread
codingkiddo marked this conversation as resolved.
Outdated
Assume.assumeTrue("libvirt not available", libVirtAvailable);
}

Expand Down
Loading