mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
5692f87160
We add a configure script for each subtest to add the required qemu arguments. Co-authored-by: Richard Maw <richard.maw@codethink.co.uk>
37 lines
907 B
Python
Executable File
37 lines
907 B
Python
Executable File
#!/usr/bin/python3
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
import json
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
|
|
config = json.load(sys.stdin)
|
|
|
|
qemu = f"qemu-system-{os.environ["QEMU_ARCHITECTURE"]}"
|
|
result = subprocess.run([qemu, '-device', 'help'], check=True, text=True, stdout=subprocess.PIPE)
|
|
if 'name "megasas-gen2"' not in result.stdout:
|
|
print("megasas-gen2 device driver is not available, skipping test...", file=sys.stderr)
|
|
exit(77)
|
|
|
|
for i in range(4):
|
|
config["QemuArgs"] += ['-device', f"megasas-gen2,id=scsi{i}"]
|
|
|
|
for i in range(128):
|
|
id = f"drive{i}"
|
|
config["QemuDrives"] += [
|
|
{
|
|
"Id": id,
|
|
"Size": "1M",
|
|
"Options": "cache=unsafe",
|
|
}
|
|
]
|
|
config["QemuArgs"] += [
|
|
'-device',
|
|
f"scsi-hd,drive={id},bus=scsi{i // 32}.0,channel=0,"
|
|
f"scsi-id={i % 32},lun=0",
|
|
]
|
|
|
|
json.dump(config, sys.stdout)
|