mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 06:31:13 -03:00
tests/checks/check-all-fish-files.fish: follow naming convention
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user