fish-shell/tests/checks/check-completions.fish
Fabian Homborg 02ee112308 source the files instead
This *might* be a bit faster running under TSAN, otherwise it takes >
400 seconds on Github Actions.

If this doesn't work we need to disable it for TSAN.
2022-04-21 17:40:25 +02:00

12 lines
349 B
Fish

#RUN: %fish -C 'set -l fish %fish' %s
# Test all completions where the command exists
# No output is good output
for f in $__fish_data_dir/completions/*.fish
if type -q (string replace -r '.*/([^/]+).fish' '$1' $f)
set -l out (source $f 2>&1 | string collect)
test -n "$out"
and echo -- OUTPUT from $f: $out
end
end