mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
ddd0e28b4f
Only check fish files that have been modified since the last time they were checked. (This continues with the assumption that we are testing for broken /usr/share fish scripts and not breakage of the fish parser, which is covered by all the other tests.) This saves 8 seconds on an NVMe disk under WSL. Won't affect integrity of CI runs, which start with a blank slate each time.
14 lines
423 B
Fish
14 lines
423 B
Fish
#RUN: %fish -C 'set -l fish %fish' %s
|
|
# Test ALL THE FISH FILES
|
|
# in share/, that is - the tests are exempt because they contain syntax errors, on purpose
|
|
|
|
set timestamp_file ./last_check_all_files
|
|
set -l find_args
|
|
if test -f $timestamp_file
|
|
set find_args -mnewer $timestamp_file
|
|
end
|
|
for file in (find $__fish_data_dir/ -name "*.fish" $find_args)
|
|
$fish -n $file
|
|
end
|
|
touch $timestamp_file
|
|
# No output is good output
|