chore(test_generator): run spellcheck

This commit is contained in:
MartinFillon 2023-09-14 18:56:56 +02:00
parent 9b805033e1
commit 27d96dd2de
No known key found for this signature in database
GPG key ID: 16DC898F53F94853

View file

@ -9,32 +9,32 @@ fi
# Clean up previous test data
if [ -f tests/cmd/$1.toml ]; then
rm tests/cmd/$1.toml
if [ -f tests/cmd/"$1".toml ]; then
rm tests/cmd/"$1".toml
fi
if [ -f tests/cmd/$1.stdout ]; then
rm tests/cmd/$1.stdout
if [ -f tests/cmd/"$1".stdout ]; then
rm tests/cmd/"$1".stdout
fi
if [ -f tests/cmd/$1.stderr ]; then
rm tests/cmd/$1.stderr
if [ -f tests/cmd/"$1".stderr ]; then
rm tests/cmd/"$1".stderr
fi
# Generate test data
touch tests/cmd/$1.toml
touch tests/cmd/"$1".toml
echo 'bin.name = "eza"' >> tests/cmd/$1.toml
echo 'args = "'$2'"' >> tests/cmd/$1.toml
echo 'bin.name = "eza"' >> tests/cmd/"$1".toml
echo 'args = "'"$2"'"' >> tests/cmd/"$1".toml
# Generate expected output
if [ -f target/debug/eza ]; then
target/debug/eza $2 > tests/cmd/$1.stdout 2> tests/cmd/$1.stderr
target/debug/eza "$2" > tests/cmd/"$1".stdout 2> tests/cmd/"$1".stderr
returncode=$?
if [ $returncode -ne 0 ]; then
echo -e 'status.code = '$returncode'' >> tests/cmd/$1.toml
echo -e 'status.code = '$returncode'' >> tests/cmd/"$1".toml
exit 0
fi
else