Fix inconsistent indentation

This commit is contained in:
Kamil Śliwak
2021-02-01 17:03:05 +01:00
parent c7d1e1911e
commit 6d44055556
5 changed files with 14 additions and 14 deletions
+4 -4
View File
@@ -6,9 +6,9 @@ echo "Finding unique failures..."
(
for x in $*
do
echo -n $x " # "
# This subshell is a workaround to prevent the shell from printing
# "Aborted"
("$REPO"/build/test/tools/solfuzzer < "$x" || true) 2>&1 | head -n 1
echo -n $x " # "
# This subshell is a workaround to prevent the shell from printing
# "Aborted"
("$REPO"/build/test/tools/solfuzzer < "$x" || true) 2>&1 | head -n 1
done
) | sort -u -t'#' -k 2