1
0
mirror of https://github.com/systemd/systemd synced 2026-03-26 08:44:55 +01:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Luca Boccassi
9b42cc3b12 tests: also add qemu shutdown trace debug logs to integration script
Again to chase https://github.com/systemd/systemd/issues/38240
as suggested on QEMU's matrix channel
2025-12-08 21:29:36 +01:00
Stephanie Wilde-Hobbs
6c9b778076
hwdb: add Magic Trackpad v2 USB-C (2024) to quirks (#40032)
Without being marked as an external trackpad the palm rejection triggers
too easily. Tested with a local hwdb rule.
2025-12-09 03:38:17 +09:00
Luca Boccassi
afcc0ca509 test-network: drop unused variable
Follow-up for e2fbcee030ca13db252105b00b89af13591e4465
2025-12-09 03:30:57 +09:00
3 changed files with 8 additions and 2 deletions

View File

@ -43,6 +43,7 @@ touchpad:bluetooth:*
# Magic Trackpad (1 and 2)
touchpad:usb:v05acp030e:*
touchpad:usb:v05acp0265:*
touchpad:usb:v05acp0324:*
ID_INPUT_TOUCHPAD_INTEGRATION=external
###########################################################

View File

@ -617,7 +617,13 @@ def main() -> None:
# XXX: debug for https://github.com/systemd/systemd/issues/38240
if vm:
# Tracing is not supported in centos/fedora qemu builds
if summary.distribution in ('centos', 'fedora'):
cmd += ['--qemu-args=-d cpu_reset,guest_errors -D /dev/stderr']
else:
cmd += [
'--qemu-args=-d cpu_reset,guest_errors,trace:kvm_run_exit_system_event,trace:qemu_system_\*_request -D /dev/stderr' # noqa: E501
]
try:
result = subprocess.run(cmd)

View File

@ -8630,7 +8630,6 @@ class NetworkdDHCPClientTests(unittest.TestCase, Utilities):
start_networkd()
self.wait_online('veth-peer:carrier')
masq = lambda bs: ':'.join(f'{b:02x}' for b in bs)
start_dnsmasq('--dhcp-option=114,http://|invalid/url',
'--dhcp-option=option6:103,http://|invalid/url')