Changeset 14611
- Timestamp:
- 01/25/14 17:16:49 (9 years ago)
- Location:
- trunk/abcl
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/build.xml
r14606 r14611 861 861 -- Run all available tests. 862 862 abcl.test.java 863 -- Run the ABCL junit Java tests under ${basedir}/test/src 863 -- Run the ABCL junit Java tests under ${basedir}/test/src/ 864 864 abcl.test.lisp 865 865 -- Run the 'test.ansi.compiled', 'test.abcl', 'test.cl-bench' targets … … 867 867 -- Run the compiled version of the ANSI test suite 868 868 test.abcl 869 -- Run the Lisp RT tests collected in ${basedir}/test/lisp/abcl 869 -- Run the Lisp RT tests collected in ${basedir}/test/lisp/abcl/ 870 870 test.cl-bench 871 871 -- Run the cl-bench test suite. … … 890 890 891 891 <patternset id="abcl.test.source.java"> 892 <!-- For now, we list tests explicitly, because we have to 893 enumerate them later to the JUnit test runner. --> 894 <include name="org/armedbear/lisp/*.java"/> 892 <include name="org/armedbear/lisp/**/*.java"/> 895 893 </patternset> 896 894 … … 947 945 <arg value="org.armedbear.lisp.StreamTest"/> 948 946 <arg value="org.armedbear.lisp.UtilitiesTest"/> 947 <!-- currently hangs(!) the running process 948 <arg value="org.armedbear.lisp.util.HttpHeadTest"/> 949 --> 949 950 </java> 950 951 </target> -
trunk/abcl/test/lisp/abcl/jar-pathname.lisp
r14603 r14611 203 203 204 204 (defparameter *url-jar-pathname-base* 205 "jar:http://abcl-dynamic-install.googlecode.com/files/baz-20130403a.jar!/") 205 "jar:http://abcl.org/fasl/42/baz-20140105a-fasl-42.jar!/") 206 ;; fasl 41 "jar:http://abcl-dynamic-install.googlecode.com/files/baz-20130403a.jar!/") 206 207 207 208 (defmacro load-url-relative (path) 208 `(load ( format nil "~A~A" *url-jar-pathname-base* ,path)))209 `(load (probe-file (format nil "~A~A" *url-jar-pathname-base* ,path)))) 209 210 210 211 ;;; wrapped in PROGN for easy disabling without a network connection
Note: See TracChangeset
for help on using the changeset viewer.