From 51efcb143da3e25a9bcda904c3830c69b5a69c51 Mon Sep 17 00:00:00 2001 From: Yuto Takano Date: Mon, 9 Aug 2021 11:54:12 +0100 Subject: [PATCH] Rename check-names.py to check_names.py This is necessary to import check_names from other scripts, which will inevitably happen in the next few commits to implement the equivalent of `list-identifiers.sh --internal`. Signed-off-by: Yuto Takano --- tests/scripts/all.sh | 2 +- tests/scripts/{check-names.py => check_names.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/scripts/{check-names.py => check_names.py} (100%) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index efcb5543e..cbb337ffa 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -733,7 +733,7 @@ component_check_changelog () { component_check_names () { msg "Check: declared and exported names (builds the library)" # < 3s - record_status tests/scripts/check-names.py -v + record_status tests/scripts/check_names.py -v } component_check_test_cases () { diff --git a/tests/scripts/check-names.py b/tests/scripts/check_names.py similarity index 100% rename from tests/scripts/check-names.py rename to tests/scripts/check_names.py