Changeset 13337 in project
- Timestamp:
- 02/18/09 13:15:54 (12 years ago)
- Location:
- chicken/trunk
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
chicken/trunk/TODO
r13328 r13337 1 TODO for trunk -*- Outline -*- 1 TODO -*- org -*- 2 ==== 2 3 3 4 … … 17 18 18 19 ** expander 20 *** TODO unstripped quoted constants :BUG: 21 if macro expands into the name of an exported macro, ##sys#strip-syntax will 22 not strip the symbol (the se contains a macro-def). Possibly just use the 23 macro name, then. 19 24 *** expansion of r5rs_pitfall 4.2 incorrect 20 25 possibly due to a non-aliased implicit "begin" somewhere … … 42 47 43 48 * tasks 49 50 ** Convert this file to org mode 44 51 45 52 ** branches -
chicken/trunk/tests/runtests.sh
r13150 r13337 6 6 export DYLD_LIBRARY_PATH=${TEST_DIR}/.. 7 7 export LD_LIBRARY_PATH=${TEST_DIR}/.. 8 compile="../csc -compiler ../chicken -v -I.. -L.. -include-path .. -o a.out" 9 compile_s="../csc -s -compiler ../chicken -v -I.. -L.. -include-path .." 8 9 CHICKEN=../chicken 10 11 if test "$MSYSTEM" == "MINGW32"; then 12 CHICKEN="..\\chicken" 13 fi 14 15 compile="../csc -compiler $CHICKEN -v -I.. -L.. -include-path .. -o a.out" 16 compile_s="../csc -s -compiler $CHICKEN -v -I.. -L.. -include-path .." 10 17 interpret="../csi -n -include-path .." 11 18 … … 101 108 $interpret -e '(set! ##sys#procedure->string (constantly "#<procedure>"))' \ 102 109 -i -s r4rstest.scm >r4rstest.log 103 diff - u r4rstest.out r4rstest.log110 diff -bu r4rstest.out r4rstest.log || true 104 111 105 112 echo "======================================== finalizer tests ..." … … 126 133 *) 127 134 echo $x 128 ../csc $x -compiler ../chicken-C -I.. -L.. -O2 -d0135 ../csc $x -compiler $CHICKEN -C -I.. -L.. -O2 -d0 129 136 ./`basename $x .scm`;; 130 137 esac
Note: See TracChangeset
for help on using the changeset viewer.