mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Modifying makefile to use bootstrapped cyclone for tests
This commit is contained in:
parent
4bcbb2ad16
commit
3ab57463e8
2 changed files with 4 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -4,8 +4,8 @@
|
|||
|
||||
include Makefile.config
|
||||
|
||||
CYCLONE = cyclone
|
||||
TESTSCM = unit-tests
|
||||
CYCLONE = ../cyclone-bootstrap/cyclone -A . -A ../cyclone-bootstrap
|
||||
TESTSCM = unit-tests srfi-60-tests
|
||||
TESTFILES = $(addprefix tests/, $(addsuffix .scm, $(TESTSCM)))
|
||||
BOOTSTRAP_DIR = ../cyclone-bootstrap
|
||||
|
||||
|
@ -175,7 +175,7 @@ examples:
|
|||
|
||||
.PHONY: test
|
||||
test: $(TESTFILES) $(CYCLONE) $(COBJECTS)
|
||||
$(foreach f,$(TESTSCM), echo tests/$(f) ; ./cyclone -A . tests/$(f).scm && tests/$(f) && rm -rf tests/$(f);)
|
||||
$(foreach f,$(TESTSCM), echo tests/$(f) ; $(CYCLONE) tests/$(f).scm && tests/$(f) && rm -rf tests/$(f);)
|
||||
|
||||
.PHONY: tags
|
||||
tags:
|
||||
|
|
1
test.txt
Normal file
1
test.txt
Normal file
|
@ -0,0 +1 @@
|
|||
ok
|
Loading…
Add table
Reference in a new issue