code review changes

Signed-off-by: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com>
This commit is contained in:
Pratik Mankawde
2026-01-07 15:18:14 +00:00
parent 8b89ae8c52
commit 9646537c62
10 changed files with 79 additions and 56 deletions

View File

@@ -256,7 +256,7 @@ def generate_strategy_matrix(all: bool, config: Config) -> list:
"build_type": build_type,
"os": os,
"architecture": architecture,
"sanitizers": "Address,UndefinedBehavior",
"sanitizers": "address,undefinedbehavior",
}
)
# TSAN is deactivated due to seg faults with latest compilers.
@@ -271,7 +271,7 @@ def generate_strategy_matrix(all: bool, config: Config) -> list:
"build_type": build_type,
"os": os,
"architecture": architecture,
"sanitizers": "Thread,UndefinedBehavior",
"sanitizers": "thread,undefinedbehavior",
}
)
else: