tests/checks/check-all-fish-files.fish: follow naming convention

This commit is contained in:
Johannes Altmanninger
2025-09-29 09:30:35 +02:00
parent 863204dbfa
commit 1dcc290e29

View File

@@ -2,14 +2,14 @@
# disable on CI ASAN because it's suuuper slow
#REQUIRES: test -z "$FISH_CI_SAN"
set -l root (path resolve -- (status dirname)/../../)
set timestamp_file $root/tests/.last-check-all-files
set -l workspace_root (path resolve -- (status dirname)/../../)
set timestamp_file $workspace_root/tests/.last-check-all-files
set -l find_args
if test -f $timestamp_file
set find_args -newer $timestamp_file
end
set -l fail_count 0
for file in (find $root/{benchmarks,build_tools,etc,share,tests} -name "*.fish" $find_args)
for file in (find $workspace_root/{benchmarks,build_tools,etc,share,tests} -name "*.fish" $find_args)
$fish -n $file; or set fail_count (math $fail_count + 1)
end