Skip to content

Commit f1c42f6

Browse files
committed
💲
1 parent 7571710 commit f1c42f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ctest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ for INFILE in "${INFILES[@]}"; do
6464
continue
6565
else
6666
OUTPUT=$(./a.out < "$INFILE")
67-
DIF="$(diff "$OUTFILE" <(echo "$OUTPUT"))"
67+
DIF="$(diff -Z "$OUTFILE" <(echo "$OUTPUT"))"
6868
EXPECTED=$(cat "$OUTFILE")
6969
if [ -n "$DIF" ]; then
7070
if [ -t 1 ]; then echo -e "${RED}Test failed.${ENDCOLOR}"

0 commit comments

Comments
 (0)