From 238be36e9ee50ad1ddd2c6ea45a304e92184594b Mon Sep 17 00:00:00 2001 From: Sebastian Schmitt Date: Thu, 4 Jun 2026 13:32:38 +0200 Subject: [PATCH] Split only once to allow for colons in partition name --- reframe/core/runtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reframe/core/runtime.py b/reframe/core/runtime.py index 2154ba335..85d1f33e6 100644 --- a/reframe/core/runtime.py +++ b/reframe/core/runtime.py @@ -292,7 +292,7 @@ def _is_valid_part(part, valid_systems): # Get sysname and partname for the partition being checked and construct # all system:partition patterns that would match the sysname and partname # being checked - sysname, partname = part.fullname.split(':') + sysname, partname = part.fullname.split(':', maxsplit=1) syspart_matches = ['*', '*:*', sysname, f'{sysname}:*', f'*:{partname}', f'{part.fullname}']