When running with sanitizers:
```
26/95 systemd:integration-tests / TEST-21-DFUZZER OK 1517.75s
40/95 systemd:integration-tests / TEST-85-NETWORK-NetworkdDHCPClientTests OK 779.18s
42/95 systemd:integration-tests / TEST-04-JOURNAL OK 716.17s
```
and without sanitizers:
```
44/95 systemd:integration-tests / TEST-85-NETWORK-NetworkdDHCPClientTests OK 730.33s
29/95 systemd:integration-tests / TEST-64-UDEV-STORAGE-simultaneous_events OK 701.49s
40/95 systemd:integration-tests / TEST-04-JOURNAL OK 348.05s
```
So, let's set higher priorities only on these tests.
integration_test_template + {
'name' : fs.name(meson.current_source_dir()),
'storage' : 'persistent',
+ 'priority' : 10,
},
]
'name' : 'simultaneous_events',
'cmdline' : cmdline,
'qemu-args' : qemu_args,
+ 'priority' : 10,
}
cmdline = []
},
},
'mkosi-args' : integration_test_template['mkosi-args'] + cmdline,
- 'priority' : 10,
+ 'priority' : testcase.get('priority', 0),
'vm' : true,
# Suppress ASan error
# 'multipathd[1820]: ==1820==ERROR: AddressSanitizer: Joining already joined thread, aborting.'
integration_tests += [
integration_test_template + {
'name' : fs.name(meson.current_source_dir()),
- 'priority' : 10,
# TODO: Remove when https://github.com/systemd/systemd/issues/35335 is fixed.
'coredump-exclude-regex' : '/systemd-localed',
},
'TEST_MATCH_TESTCASE': testcase,
}
},
- 'priority' : 10,
+ 'priority' : testcase == 'NetworkdDHCPClientTests' ? 10 : 0,
'vm' : true,
},
]