[llvm] [utils][UpdateTestChecks] Warn about possible target triple mismatch (PR #149645)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 11 02:00:55 PDT 2025
================
@@ -142,7 +142,12 @@ def update_test(ti: common.TestInfo):
triple = common.get_triple_from_march(march_in_cmd)
scrubber, function_re = output_type.get_run_handler(triple)
- builder.process_run_line(function_re, scrubber, raw_tool_output, prefixes)
+ if not builder.process_run_line(
----------------
fhahn wrote:
better either return a bool from `process_run_line` or check `!= 0` for clarity?
https://github.com/llvm/llvm-project/pull/149645
More information about the llvm-commits
mailing list