Changeset 27294 in project for release/4/spock/stuff/Makefile
- Timestamp:
- 08/25/12 13:58:01 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
release/4/spock/stuff/Makefile
r22992 r27294 10 10 SPOCK_DIR = `csi -p "(repository-path)"`/spock 11 11 12 .PHONY: check checkprograms checklibrary 12 .PHONY: check checkprograms checklibrary threads 13 13 14 14 … … 19 19 @$(SPOCK) $(SPOCK_OPTIONS) -debug test.scm library-tests.scm test-end.scm \ 20 20 -o tests/library-test-debug.js 21 @$(TIME) $(JS) -f $(SPOCK_DIR)/spock-runtime-debug.js -f tests/library-test-debug.js21 $(TIME) $(JS) -f $(SPOCK_DIR)/spock-runtime-debug.js -f tests/library-test-debug.js 22 22 @echo "======================================== library tests (debug + strict)" 23 23 @$(SPOCK) $(SPOCK_OPTIONS) -debug -strict test.scm library-tests.scm test-end.scm \ 24 24 -o tests/library-test-strict.js 25 @$(TIME) $(JS) -f $(SPOCK_DIR)/spock-runtime-debug.js -f tests/library-test-strict.js25 $(TIME) $(JS) -f $(SPOCK_DIR)/spock-runtime-debug.js -f tests/library-test-strict.js 26 26 @echo "======================================== library tests (default)" 27 27 @$(SPOCK) $(SPOCK_OPTIONS) test.scm library-tests.scm test-end.scm \ 28 28 -o tests/library-test.js 29 @$(TIME) $(JS) -f $(SPOCK_DIR)/spock-runtime.js -f tests/library-test.js29 $(TIME) $(JS) -f $(SPOCK_DIR)/spock-runtime.js -f tests/library-test.js 30 30 31 31 checkprograms: test.scm … … 33 33 tests/runtest.sh $(SPOCK) $$x $(SPOCK_OPTIONS) -debug \ 34 34 -o tests/`basename $$x .scm`.js || exit 1; \ 35 $(TIME) $(JS) -f $(SPOCK_DIR)/spock-runtime-debug.js \ 36 -f tests/`basename $$x .scm`.js || exit 1; \ 35 $(TIME) $(JS) -f $(SPOCK_DIR)/spock-runtime-debug.js -f tests/`basename $$x .scm`.js || exit 1; \ 37 36 done 38 37 … … 44 43 done 45 44 rm -f tmp.js 45 46 threads: threads.scm 47 @$(SPOCK) $(SPOCK_OPTIONS) threads.scm -o threads.js
Note: See TracChangeset
for help on using the changeset viewer.