From 3c41f9d3e28494fe8eb83a0b7fc738b6c3d4ec47 Mon Sep 17 00:00:00 2001 From: John Croisant Date: Thu, 15 Mar 2018 21:43:21 -0500 Subject: [PATCH] Add "test-division" Makefile target. Runs tests/division-tests.scm. The "test-all" target now also runs test-division. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f32a4022..cc935cae 100644 --- a/Makefile +++ b/Makefile @@ -270,6 +270,9 @@ test-snow: chibi-scheme$(EXE) $(IMAGE_FILES) test-unicode: chibi-scheme$(EXE) $(CHIBI) -xchibi tests/unicode-tests.scm +test-division: chibi-scheme$(EXE) + $(CHIBI) tests/division-tests.scm + test-libs: chibi-scheme$(EXE) $(CHIBI) tests/lib-tests.scm @@ -281,7 +284,7 @@ test-r7rs: chibi-scheme$(EXE) test: test-r7rs -test-all: test test-libs test-ffi +test-all: test test-libs test-ffi test-division test-dist: test-all test-memory test-build