summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrfeas <38209077+0xfea5@users.noreply.github.com>2025-09-01 04:44:17 +0300
committerOrfeas <38209077+0xfea5@users.noreply.github.com>2025-09-01 04:51:37 +0300
commit075fefa504f177f02d977b941e4b90b80aee20f8 (patch)
treeb9a936db6a91efedeafedffc094bee9680c56a4f
parentskel/: include some useful headers in solution.cpp (diff)
downloadaoc24-075fefa504f177f02d977b941e4b90b80aee20f8.tar.gz
aoc24-075fefa504f177f02d977b941e4b90b80aee20f8.zip
aoc.mk: add some extra diff options
-rw-r--r--aoc.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/aoc.mk b/aoc.mk
index 2009ca1..233a712 100644
--- a/aoc.mk
+++ b/aoc.mk
@@ -20,7 +20,7 @@ force:
20tests: ${TESTS} 20tests: ${TESTS}
21 21
22tests/test%.input: tests/test%.output compile force 22tests/test%.input: tests/test%.output compile force
23 @diff --color=always <(timeout ${TIMEOUT} ${TARGET} < $@) <(cat $<) > /tmp/aoc.output \ 23 @diff -BZ --color=always <(timeout ${TIMEOUT} ${TARGET} < $@) <(cat $<) > /tmp/aoc.output \
24 && echo -e "$@ [\e[0;32mok\e[m]" \ 24 && echo -e "$@ [\e[0;32mok\e[m]" \
25 || echo -e "$@ [\e[0;31mfail\e[m]" 25 || echo -e "$@ [\e[0;31mfail\e[m]"
26 @cat /tmp/aoc.output 26 @cat /tmp/aoc.output