From 224367dd6c6b52b13bb31f438256c3373659a7f2 Mon Sep 17 00:00:00 2001 From: Mateusz Gancarz Date: Tue, 25 Feb 2025 15:18:20 +0100 Subject: [PATCH] [#73220] add . and $ to possible names characters --- test_regress/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_regress/driver.py b/test_regress/driver.py index 3d1c591c6..fc7b12bb7 100755 --- a/test_regress/driver.py +++ b/test_regress/driver.py @@ -137,7 +137,7 @@ class SAIFParser: if match: self.duration = int(match.groups()[0]) - match = re.search(r'INSTANCE\s+([\w.]*)', line) + match = re.search(r'INSTANCE\s+([\w\.\$]+)', line) if match: instance_name = match.groups()[0]