Skip to content
Open
Changes from all commits
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
8 changes: 5 additions & 3 deletions src/tests/ftest/launch.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""
(C) Copyright 2018-2024 Intel Corporation.
(C) Copyright 2025 Hewlett Packard Enterprise Development LP
(C) Copyright 2025-2026 Hewlett Packard Enterprise Development LP

SPDX-License-Identifier: BSD-2-Clause-Patent
"""
Expand Down Expand Up @@ -43,6 +43,9 @@ class LaunchError(Exception):
class Launch():
"""Class to launch avocado tests."""

FIND_PACKAGES = ("daos", "argobots", "libabt", "dpdk", "fuse", "libfabric", "libisa-l",
"libisal", "isa-l", "libpmem", "pmempool", "mercury", "spdk", "mpifileutils",
"mlnx-ofed-basic", "doca-ofed", "openmpi", "mpich", "ior", "mpich", "bullseye")
RESULTS_DIRS = (
"daos_configs", "daos_logs", "cart_logs", "daos_dumps", "valgrind_logs", "stacktraces")

Expand Down Expand Up @@ -273,8 +276,7 @@ def _run(self, args):
# pylint: disable=unsupported-binary-operation
all_hosts = args.test_servers | args.test_clients | self.local_host
self.details["installed packages"] = find_packages(
logger, all_hosts,
"'^(daos|libfabric|mercury|ior|openmpi|mpich|mpifileutils|mlnx-ofed-basic)-'")
logger, all_hosts, f"'^({'|'.join(self.FIND_PACKAGES)})-'")

# Setup the test environment
test_env = TestEnvironment()
Expand Down
Loading