mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
Add "test-division" Makefile target.
Runs tests/division-tests.scm. The "test-all" target now also runs test-division.
This commit is contained in:
parent
c5345a5b48
commit
3c41f9d3e2
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -270,6 +270,9 @@ test-snow: chibi-scheme$(EXE) $(IMAGE_FILES)
|
||||||
test-unicode: chibi-scheme$(EXE)
|
test-unicode: chibi-scheme$(EXE)
|
||||||
$(CHIBI) -xchibi tests/unicode-tests.scm
|
$(CHIBI) -xchibi tests/unicode-tests.scm
|
||||||
|
|
||||||
|
test-division: chibi-scheme$(EXE)
|
||||||
|
$(CHIBI) tests/division-tests.scm
|
||||||
|
|
||||||
test-libs: chibi-scheme$(EXE)
|
test-libs: chibi-scheme$(EXE)
|
||||||
$(CHIBI) tests/lib-tests.scm
|
$(CHIBI) tests/lib-tests.scm
|
||||||
|
|
||||||
|
@ -281,7 +284,7 @@ test-r7rs: chibi-scheme$(EXE)
|
||||||
|
|
||||||
test: test-r7rs
|
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
|
test-dist: test-all test-memory test-build
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue