Changeset 15502 in project
- Timestamp:
- 08/16/09 12:15:31 (12 years ago)
- Location:
- chicken/branches/inlining
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
chicken/branches/inlining/rules.make
r15323 r15502 1257 1257 1258 1258 testclean: 1259 $(REMOVE_COMMAND) $(REMOVE_COMMAND_OPTIONS) $(SRCDIR)tests/ *.out $(SRCDIR)tests/tmp*\1260 $(SRCDIR)tests/ *.so $(SRCDIR)tests/*.import.scm $(SRCDIR)tests/repository1259 $(REMOVE_COMMAND) $(REMOVE_COMMAND_OPTIONS) $(SRCDIR)tests/a.out $(SRCDIR)tests/scrutiny.out \ 1260 $(SRCDIR)tests/tmp* $(SRCDIR)tests/*.so $(SRCDIR)tests/*.import.scm $(SRCDIR)tests/repository 1261 1261 1262 1262 # run tests -
chicken/branches/inlining/tests/compiler-tests-2.scm
r12114 r15502 13 13 (plus 1)) 14 14 15 ( print (plus1 1))15 (assert (= 2 (plus1 1))) 16 16 17 17 (define (len lst) … … 24 24 (len 0)) 25 25 26 ( print (len '(1 2 3)))26 (assert (= 3 (len '(1 2 3)))) -
chicken/branches/inlining/tests/runtests.sh
r15194 r15502 39 39 40 40 echo "======================================== compiler tests (2) ..." 41 $compile compiler-tests.scm -lambda-lift 41 $compile compiler-tests-2.scm -lambda-lift 42 ./a.out 43 44 echo "======================================== compiler inlining tests ..." 45 $compile inlining-tests.scm -optimize-level 3 42 46 ./a.out 43 47
Note: See TracChangeset
for help on using the changeset viewer.