From 8b6217bba8748b2daf1ea7820844f1086f422501 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 15 Jan 2026 17:07:03 +0100 Subject: [PATCH] check_names: don't build what we don't need We only look at symbols in the library, so don't bother building tests. No semantic change. Signed-off-by: Gilles Peskine --- scripts/check_names.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check_names.py b/scripts/check_names.py index 1afbb8a13..24b0c4a8f 100755 --- a/scripts/check_names.py +++ b/scripts/check_names.py @@ -797,7 +797,7 @@ class TFPSACryptoCodeParser(CodeParser): check=True ) subprocess.run( - ["cmake", "--build", "."], + ["cmake", "--build", ".", "-t", "tfpsacrypto"], env=my_environment, universal_newlines=True, stdout=subprocess.PIPE, @@ -968,7 +968,7 @@ class MBEDTLSCodeParser(CodeParser): check=True ) subprocess.run( - ["cmake", "--build", "."], + ["cmake", "--build", ".", "-t", "lib"], env=my_environment, universal_newlines=True, stdout=subprocess.PIPE,