unit-test: allow non-shell scripts for format extension
Switch the 'format-code.sh' extension to look recursively for any
'format-code.sh' or 'format-code' script. This allows non-shell
scripts to be used and allows the unit-test extensions to be moved
to a subdirectory (such as .openbmc).
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I2dfed1230bd70b871eca7c5b3d0078786f4d9460
diff --git a/scripts/unit-test.py b/scripts/unit-test.py
index a710d62..16ddd53 100755
--- a/scripts/unit-test.py
+++ b/scripts/unit-test.py
@@ -1163,7 +1163,10 @@
# First validate code formatting if repo has style formatting files.
# The format-code.sh checks for these files.
if FORMAT_CODE:
- check_call_cmd("./format-code.sh", CODE_SCAN_DIR)
+ format_scripts = find_file(['format-code.sh', 'format-code'],
+ CODE_SCAN_DIR)
+ for f in format_scripts:
+ check_call_cmd(f, CODE_SCAN_DIR)
# Check if this repo has a supported make infrastructure
pkg = Package(UNIT_TEST_PKG, CODE_SCAN_DIR)