aboutsummaryrefslogtreecommitdiffstats
path: root/AoC2022/makefile
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2022-12-18 22:55:14 +0100
committerOscar Najera <hi@oscarnajera.com>2022-12-18 22:56:54 +0100
commiteff65db9aa6f4e41731397f990193a6b619badea (patch)
treea5c9674f28b5fb56b53bcc9d2d8e3e9ba4e844d6 /AoC2022/makefile
parent8a953ffd9d0621346535060c31d1fc5772243ff3 (diff)
downloadscratch-eff65db9aa6f4e41731397f990193a6b619badea.tar.gz
scratch-eff65db9aa6f4e41731397f990193a6b619badea.tar.bz2
scratch-eff65db9aa6f4e41731397f990193a6b619badea.zip
run test on makefile not on script
Diffstat (limited to 'AoC2022/makefile')
-rw-r--r--AoC2022/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/AoC2022/makefile b/AoC2022/makefile
index 968dbff..d30a711 100644
--- a/AoC2022/makefile
+++ b/AoC2022/makefile
@@ -12,7 +12,7 @@ emacs: ${PWD}/solver.el
cd ${PWD} && emacs -batch -l ert -l solver.el -f ert-run-tests-batch-and-exit
lisp: ${PWD}/solver.lisp
- cd ${PWD} && sbcl --load ~/.sbclrc --script solver.lisp
+ cd ${PWD} && time sbcl --load ~/.sbclrc --load solver.lisp --eval '(fiveam:run-all-tests)' --non-interactive
rust: ${PWD}/solver.rs
cd ${PWD} && rustc solver.rs -o /tmp/solver && /tmp/solver