mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 05:35:20 +00:00
tests: Enable landlock in test_iommu_segments
Signed-off-by: Praveen K Paladugu <prapal@linux.microsoft.com>
This commit is contained in:
parent
69a4cda8ec
commit
bc545f3b64
@ -2813,6 +2813,10 @@ mod common_parallel {
|
|||||||
"--platform",
|
"--platform",
|
||||||
&format!("num_pci_segments={MAX_NUM_PCI_SEGMENTS},iommu_segments=[1]"),
|
&format!("num_pci_segments={MAX_NUM_PCI_SEGMENTS},iommu_segments=[1]"),
|
||||||
])
|
])
|
||||||
|
.args([
|
||||||
|
"--landlock-rules",
|
||||||
|
format!("path={:?},flags=rw", test_disk_path).as_str(),
|
||||||
|
])
|
||||||
.default_disks()
|
.default_disks()
|
||||||
.capture_output()
|
.capture_output()
|
||||||
.default_net();
|
.default_net();
|
||||||
@ -5172,7 +5176,14 @@ mod common_parallel {
|
|||||||
.args(["--memory", "size=512M"])
|
.args(["--memory", "size=512M"])
|
||||||
.args(["--kernel", kernel_path.to_str().unwrap()])
|
.args(["--kernel", kernel_path.to_str().unwrap()])
|
||||||
.args(["--cmdline", DIRECT_KERNEL_BOOT_CMDLINE])
|
.args(["--cmdline", DIRECT_KERNEL_BOOT_CMDLINE])
|
||||||
.args(["--landlock-rules", format!("path={:?},flags=rw", blk_file_path.as_path().to_str().unwrap()).as_str()])
|
.args([
|
||||||
|
"--landlock-rules",
|
||||||
|
format!(
|
||||||
|
"path={:?},flags=rw",
|
||||||
|
blk_file_path.as_path().to_str().unwrap()
|
||||||
|
)
|
||||||
|
.as_str(),
|
||||||
|
])
|
||||||
.default_disks()
|
.default_disks()
|
||||||
.default_net()
|
.default_net()
|
||||||
.capture_output()
|
.capture_output()
|
||||||
|
Loading…
Reference in New Issue
Block a user