aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7b47ee8e26e13070581e41d402a46f9834d5161b (plain)
1
2
3
4
5
6
7
8
9
10
11
TESTOPTS=--noinform --non-interactive --eval "(require 'asdf)"\
	--eval "(setf sb-impl::*default-external-format* :utf-8)"\
	--eval "(asdf:load-asd (merge-pathnames \"scgi-routes.asd\"))"\
	--eval "(asdf:load-system :scgi-routes/tests)"\
	--eval "(if (5am:run-all-tests) (uiop:quit 0) (uiop:quit 1))"

all :

.PHONY : test
test :
	@sbcl $(TESTOPTS)