mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
synced 2024-11-15 00:04:23 +08:00
16a7cbca91
Spell checking can now run in automated mode. === Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ Author: Yaroslav Halchenko <debian@onerussian.com> Signed-off-by: David Sterba <dsterba@suse.com>
24 lines
535 B
Bash
Executable File
24 lines
535 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Check that the system setup and configuration are sufficient for all tests to run
|
|
|
|
for dir in *-tests; do
|
|
missing=
|
|
echo "Checking prerequisites for: $dir"
|
|
for prog in $(find "$dir" -name 'test.sh' -exec grep check_global_prereq '{}' \; | sort -u); do
|
|
if [ "$prog" = check_global_prereq ]; then
|
|
continue
|
|
fi
|
|
if type -p "$prog" &> /dev/null; then
|
|
echo "Check $prog: OK"
|
|
else
|
|
echo "Check $prog: MISSING"
|
|
missing+=" $prog"
|
|
fi
|
|
done
|
|
|
|
if ! [ -z "$missing" ]; then
|
|
echo "MISSING: $missing"
|
|
fi
|
|
done
|