Changeset 13292


Ignore:
Timestamp:
05/24/11 12:25:23 (12 years ago)
Author:
Mark Evenson
Message:

Untabify.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/build.xml

    r13279 r13292  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<project xmlns="antlib:org.apache.tools.ant"
    3   name="abcl-master" default="abcl.wrapper" basedir=".">
     3        name="abcl-master" default="abcl.wrapper" basedir=".">
    44    <description>Compiling, testing, and packaging Armed Bear Common Lisp</description>
    55
    66    <target name="abcl" depends="abcl.wrapper"/>
    7  
     7       
    88    <target name="help">
    99      <echo>
     
    3232
    3333    <property name="build.dir"
    34         value="${basedir}/build"/>
     34              value="${basedir}/build"/>
    3535    <property name="build.classes.dir"
    36         value="${build.dir}/classes"/>
     36              value="${build.dir}/classes"/>
    3737    <property name="src.dir"
    38         value="${basedir}/src"/>
     38              value="${basedir}/src"/>
    3939    <property name="dist.dir"
    40         value="${basedir}/dist"/>
     40              value="${basedir}/dist"/>
    4141    <property name="abcl.jar.path"
    42         value="${dist.dir}/abcl.jar"/>
     42              value="${dist.dir}/abcl.jar"/>
    4343    <property name="abcl.ext.dir"
    44         value="${basedir}/ext"/>
     44              value="${basedir}/ext"/>
    4545
    4646    <fail message="Please build using Ant 1.7.1 or higher.">
     
    5454    <!-- Checks if JSR-223 support is available - thanks to Mark Evenson -->
    5555    <available property="abcl.jsr-223.p"
    56          classname="javax.script.ScriptEngine"/>
     56               classname="javax.script.ScriptEngine"/>
    5757
    5858    <patternset id="abcl.source.java">
     
    113113    <target name="abcl.init">
    114114      <tstamp>
    115   <format property="build" pattern="EEE MMM dd yyyy HH:mm:ss zzz"/>
     115        <format property="build" pattern="EEE MMM dd yyyy HH:mm:ss zzz"/>
    116116      </tstamp>
    117117
    118118      <tstamp>
    119   <format property="build.stamp" pattern="yyyymmdd-HHmm"/>
     119        <format property="build.stamp" pattern="yyyymmdd-HHmm"/>
    120120      </tstamp>
    121121
    122122      <property name="abcl.test.log.file"
    123     value="abcl-test-${build.stamp}.log"/>
     123                value="abcl-test-${build.stamp}.log"/>
    124124
    125125      <property name="java.path"
    126     value="${java.home}/bin/java"/>
     126                value="${java.home}/bin/java"/>
    127127
    128128      <!-- Deprecated. Two main types of build environents: 'unix' or 'windows'. -->
    129129      <condition property="unix">
    130   <or>
    131     <os family="unix"/>
    132     <os family="mac"/>
    133   </or>
     130        <or>
     131          <os family="unix"/>
     132          <os family="mac"/>
     133        </or>
    134134      </condition>
    135135      <condition property="windows">
    136   <os family="windows"/>
     136        <os family="windows"/>
    137137      </condition>
    138138
    139139      <!-- Deprecated. -->
    140140      <available file="${src.dir}org/armedbear/lisp/Interpreter.java"
    141     property="abcl.lisp.p"/>
     141                property="abcl.lisp.p"/>
    142142
    143143      <echo>java.version: ${java.version}</echo>
    144144      <condition property="abcl.java.version.p">
    145   <or>
    146     <matches string="${java.version}" pattern="1\.5"/>
    147     <matches string="${java.version}" pattern="1\.6\.0_[12][0-9]"/>
    148   </or> 
     145        <or>
     146          <matches string="${java.version}" pattern="1\.5"/>
     147          <matches string="${java.version}" pattern="1\.6\.0_[12][0-9]"/>
     148        </or> 
    149149      </condition>
    150150
     
    152152   
    153153    <target name="abcl.java.warning"
    154       depends="abcl.init"
    155       unless="abcl.java.version.p">
     154            depends="abcl.init"
     155            unless="abcl.java.version.p">
    156156      <echo>WARNING: Use of Java version ${java.version} not recommended.</echo>
    157157    </target>
    158  
     158       
    159159    <target name="abcl.jsr-223.notice"
    160       depends="abcl.init"
    161       unless="abcl.jsr-223.p">
     160            depends="abcl.init"
     161            unless="abcl.jsr-223.p">
    162162      <echo>
    163   Notice: JSR-223 support won't be built since it is not
    164           supported, neither natively by your JVM nor by
    165     libraries in the CLASSPATH.
     163        Notice: JSR-223 support won't be built since it is not
     164                supported, neither natively by your JVM nor by
     165                libraries in the CLASSPATH.
    166166      </echo>
    167167    </target>
    168168
    169169    <target name="abcl.compile.java"
    170       depends="abcl.init,abcl.java.warning,abcl.jsr-223.notice">
     170            depends="abcl.init,abcl.java.warning,abcl.jsr-223.notice">
    171171      <mkdir dir="${build.dir}"/>
    172172      <mkdir dir="${build.classes.dir}"/>
    173173      <javac destdir="${build.classes.dir}"
    174        debug="true"
    175        target="1.5"
     174             debug="true"
     175             target="1.5"
    176176             includeantruntime="false"
    177        failonerror="true">
    178   <src path="${src.dir}"/>
    179   <patternset refid="abcl.source.java"/>
     177             failonerror="true">
     178        <src path="${src.dir}"/>
     179        <patternset refid="abcl.source.java"/>
    180180      </javac>
    181181      <echo message="${build}"
    182       file="${build.classes.dir}/org/armedbear/lisp/build"/>
     182            file="${build.classes.dir}/org/armedbear/lisp/build"/>
    183183    </target>
    184184
    185185    <target name="abcl.copy.lisp">
    186186      <copy todir="${build.classes.dir}" preservelastmodified="yes">
    187   <fileset dir="${src.dir}">
     187        <fileset dir="${src.dir}">
    188188          <patternset refid="abcl.source.lisp.dist"/>
    189   </fileset>
     189        </fileset>
    190190      </copy>
    191191    </target>
     
    207207    <target name="abcl.fasls.uptodate">
    208208      <uptodate property="abcl.fasls.uptodate.p" value="true">
    209   <srcfiles dir="${src.dir}">
    210     <patternset refid="abcl.source.lisp.fasls"/>
    211   </srcfiles>
    212   <mapper type="glob" from="*.lisp" to="${build.classes.dir}/*.abcl"/>
     209        <srcfiles dir="${src.dir}">
     210          <patternset refid="abcl.source.lisp.fasls"/>
     211        </srcfiles>
     212        <mapper type="glob" from="*.lisp" to="${build.classes.dir}/*.abcl"/>
    213213      </uptodate>
    214214    </target>
     
    216216    <path id="abcl.home.dir.path">
    217217        <path location="${src.dir}/org/armedbear/lisp/"/>
    218     </path>        
     218    </path>        
    219219    <pathconvert property="abcl.home.dir" refid="abcl.home.dir.path"/>
    220220
     
    227227   
    228228    <target name="abcl.compile.lisp"
    229       depends="abcl.copy.lisp,abcl.compile.java,abcl.system.update.maybe,abcl.fasls.uptodate"
    230       unless="abcl.fasls.uptodate.p">
     229            depends="abcl.copy.lisp,abcl.compile.java,abcl.system.update.maybe,abcl.fasls.uptodate"
     230            unless="abcl.fasls.uptodate.p">
    231231      <echo>
    232232Compiling Lisp system
     
    239239     </delete>
    240240     <java classpath="${build.classes.dir}"
    241       fork="true"
    242       failonerror="true"
     241            fork="true"
     242            failonerror="true"
    243243            inputstring="(handler-case (compile-system :zip nil :quit t :output-path &quot;${abcl.lisp.output}/&quot;) (t (x) (progn (format t &quot;~A: ~A~%&quot; (type-of x) x) (exit :status -1))))"
    244       classname="org.armedbear.lisp.Main">
     244            classname="org.armedbear.lisp.Main">
    245245        <jvmarg value="-Dabcl.home=${abcl.home.dir}${file.separator}"/>
    246   <arg value="--noinit"/>
     246        <arg value="--noinit"/>
    247247        <arg value="--nosystem"/>
    248248        <arg value="--eval"/>
     
    255255
    256256    <property name="abcl.build.path"
    257         value="${build.classes.dir}/org/armedbear/lisp/build"/>
     257              value="${build.classes.dir}/org/armedbear/lisp/build"/>
    258258    <target name="abcl.stamp"
    259259            depends="abcl.compile,abcl.stamp.version,abcl.stamp.hostname">
     
    325325              value="${src.dir}/org/armedbear/lisp/"/>
    326326    <property name="abcl.version.path"
    327         value="${build.classes.dir}/org/armedbear/lisp/version"/>
     327              value="${build.classes.dir}/org/armedbear/lisp/version"/>
    328328
    329329    <target name="abcl.clean.version">
     
    349349            unless="abcl.stamp.version.uptodate.p">
    350350      <java fork="true"
    351       classpath="${build.classes.dir}"
    352       outputproperty="abcl.version"
    353       classname="org.armedbear.lisp.Version"
     351            classpath="${build.classes.dir}"
     352            outputproperty="abcl.version"
     353            classname="org.armedbear.lisp.Version"
    354354            logerror="yes"/> <!-- Don't catch stderr output -->
    355355    </target>
     
    403403
    404404    <target name="abcl.jar" depends="abcl.jar.uptodate"
    405       unless="abcl.jar.uptodate.p">
     405            unless="abcl.jar.uptodate.p">
    406406      <mkdir dir="${dist.dir}"/>
    407407      <loadfile property="abcl.version"
    408408                srcFile="${abcl.version.path}"/>
    409409      <jar destfile="${abcl.jar.path}"
    410      compress="true"
    411      basedir="${build.classes.dir}">
    412   <patternset refid="abcl.objects"/>
    413   <manifest>
    414     <attribute name="Main-Class" value="org.armedbear.lisp.Main"/>
    415     <section name="org/armedbear/lisp">
    416       <attribute name="Implementation-Title"
    417            value="ABCL"/>
    418       <attribute name="Implementation-Version" 
    419            value="${abcl.implementation.version}"/>
    420       <attribute name="Implementation-Build"
    421            value="${build}"/>
    422     </section>
    423   </manifest>
    424   <metainf dir="${src.dir}/META-INF">
    425     <exclude name="services/javax.script.ScriptEngineFactory"
    426        unless="abcl.jsr-223.p"/>
    427         </metainf>
     410           compress="true"
     411           basedir="${build.classes.dir}">
     412        <patternset refid="abcl.objects"/>
     413        <manifest>
     414          <attribute name="Main-Class" value="org.armedbear.lisp.Main"/>
     415          <section name="org/armedbear/lisp">
     416            <attribute name="Implementation-Title"
     417                       value="ABCL"/>
     418            <attribute name="Implementation-Version" 
     419                       value="${abcl.implementation.version}"/>
     420            <attribute name="Implementation-Build"
     421                       value="${build}"/>
     422          </section>
     423        </manifest>
     424        <metainf dir="${src.dir}/META-INF">
     425          <exclude name="services/javax.script.ScriptEngineFactory"
     426                   unless="abcl.jsr-223.p"/>
     427        </metainf>
    428428      </jar>
    429429    </target>
    430430   
    431431    <target name="abcl.wrapper"
    432       depends="abcl.jar,abcl.wrapper.unix,abcl.wrapper.windows">
     432            depends="abcl.jar,abcl.wrapper.unix,abcl.wrapper.windows">
    433433      <description>
    434   Creates in-place exectuable shell wrapper in '${abcl.wrapper.file}'
     434        Creates in-place exectuable shell wrapper in '${abcl.wrapper.file}'
    435435      </description>
    436436      <!-- Set from commandline or in 'build.properties' -->
    437437      <property name="additional.jars" value=""/>
    438438      <path id="abcl.runtime.classpath">
    439   <pathelement location="${abcl.jar.path}"/>
    440   <pathelement path="${additional.jars}"/>
     439        <pathelement location="${abcl.jar.path}"/>
     440        <pathelement path="${additional.jars}"/>
    441441      </path>
    442442      <!-- set via '-Djava.options=JAVA_OPTIONS' or in 'build.properties -->
     
    444444
    445445      <copy file="${abcl.wrapper.in.file}" toFile="${abcl.wrapper.file}" overwrite="yes">
    446   <filterset>
    447     <filter token="JAVA"
    448       value="${java.path}"/>
    449     <filter token="ABCL_JAVA_OPTIONS"
    450       value="${java.options}"/>
    451     <filter token="ABCL_CLASSPATH"
    452       value="${toString:abcl.runtime.classpath}"/>
    453   </filterset>
     446        <filterset>
     447          <filter token="JAVA"
     448                  value="${java.path}"/>
     449          <filter token="ABCL_JAVA_OPTIONS"
     450                  value="${java.options}"/>
     451          <filter token="ABCL_CLASSPATH"
     452                  value="${toString:abcl.runtime.classpath}"/>
     453        </filterset>
    454454      </copy>
    455455      <chmod file="${abcl.wrapper.file}" perm="a+x"/>
     
    472472    <target name="abcl.contrib.compile" depends="abcl.jar">
    473473      <java fork="true"
    474       failonerror="true"
     474            failonerror="true"
    475475            classpathref="abcl.classpath.dist"
    476476            inputstring="(require 'asdf) (handler-case (progn (setf *default-pathname-defaults* &quot;${basedir}/contrib/asdf-install/&quot;) (asdf:operate 'asdf:compile-op :asdf-install)) (t (x) (progn (format t &quot;~A: ~A~%&quot; (type-of x) x) (exit :status -1))))"
     
    509509      <description>Invoke ABCL with JPDA listener on port 6789</description>
    510510      <java fork="true"
    511       classpathref="abcl.classpath.dist"
    512       classname="org.armedbear.lisp.Main">
    513   <jvmarg
    514       value="-agentlib:jdwp=transport=dt_socket,address=6789,server=y"/>
     511            classpathref="abcl.classpath.dist"
     512            classname="org.armedbear.lisp.Main">
     513        <jvmarg
     514            value="-agentlib:jdwp=transport=dt_socket,address=6789,server=y"/>
    515515      </java>
    516516      <echo>JPDA listening on localhost:6789</echo>
     
    520520      <description>Invoke ABCL with JPDA listener on port 6789</description>
    521521      <java fork="true"
    522       classpathref="abcl.classpath.build"
    523       classname="org.armedbear.lisp.Main">
    524   <jvmarg
    525       value="-agentlib:jdwp=transport=dt_socket,address=6789,server=y"/>
     522            classpathref="abcl.classpath.build"
     523            classname="org.armedbear.lisp.Main">
     524        <jvmarg
     525            value="-agentlib:jdwp=transport=dt_socket,address=6789,server=y"/>
    526526        <jvmarg value="-Dabcl.home=${abcl.home.dir}${file.separator}"/>
    527527      </java>
     
    531531    <target name="abcl.run" depends="abcl.jar">
    532532      <java fork="true"
    533       classpathref="abcl.classpath.dist"
    534       classname="org.armedbear.lisp.Main">
     533            classpathref="abcl.classpath.dist"
     534            classname="org.armedbear.lisp.Main">
    535535      </java>
    536536    </target>
     
    545545    <target name="abcl.dist" depends="abcl.jar">
    546546      <copy file="${abcl.jar.path}"
    547       toFile="${dist.dir}/abcl-${abcl.version}.jar"/>
     547            toFile="${dist.dir}/abcl-${abcl.version}.jar"/>
    548548    </target>
    549549
     
    558558      <apply executable="etags" parallel="true" verbose="true" maxparallel="300">
    559559        <arg value="--append"/>
    560   <arg value="--regex=|[ \t]+//[ \t]+###[ \t]+\([^ \t]+\)|\1|"/>
    561   <arg value='--regex=|[ \t]*@DocString([ \t]*name=\"\([^\"]*\)|\1|'/>
    562   <fileset dir="${src.dir}">
    563     <patternset refid="abcl.source.java"/>
    564     <patternset refid="abcl.source.lisp"/>
    565   </fileset>
     560        <arg value="--regex=|[ \t]+//[ \t]+###[ \t]+\([^ \t]+\)|\1|"/>
     561        <arg value='--regex=|[ \t]*@DocString([ \t]*name=\"\([^\"]*\)|\1|'/>
     562        <fileset dir="${src.dir}">
     563          <patternset refid="abcl.source.java"/>
     564          <patternset refid="abcl.source.lisp"/>
     565        </fileset>
    566566      </apply>
    567567    </target>
    568568
    569569    <patternset id="abcl.dist.misc"
    570     description="Additional includes in the source distributions relative to basedir">
     570                description="Additional includes in the source distributions relative to basedir">
    571571      <include name="build.xml"/>
    572572      <include name="abcl.properties.in"/>
     
    606606    <target name="abcl.source.prepare" depends="abcl.stamp.version">
    607607      <property name="abcl.build.src.dir"
    608     value="${build.dir}/abcl-src-${abcl.version}"/>
     608                value="${build.dir}/abcl-src-${abcl.version}"/>
    609609      <mkdir dir="${abcl.build.src.dir}/src"/>
    610610      <copy todir="${abcl.build.src.dir}/src"
     
    659659      <mkdir dir="${dist.dir}"/>
    660660      <tar destfile="${dist.dir}/abcl-src-${abcl.version}.tar.gz"
    661      compression="gzip">
    662   <tarfileset dir="${build.dir}">
    663     <include name="abcl-src-${abcl.version}/**"/>
    664   </tarfileset>
     661           compression="gzip">
     662        <tarfileset dir="${build.dir}">
     663          <include name="abcl-src-${abcl.version}/**"/>
     664        </tarfileset>
    665665      </tar>
    666666    </target>
     
    688688      <mkdir dir="${dist.dir}"/>
    689689      <zip destfile="${dist.dir}/abcl-src-${abcl.version}.zip"
    690      compress="true">
    691   <zipfileset dir="${abcl.build.src.dir}" prefix="abcl-src-${abcl.version}"/>
     690           compress="true">
     691        <zipfileset dir="${abcl.build.src.dir}" prefix="abcl-src-${abcl.version}"/>
    692692      </zip>
    693693    </target>
     
    787787
    788788    <property name="abcl.test.classes.dir"
    789         value="${build.dir}/classes-test"/>
     789              value="${build.dir}/classes-test"/>
    790790
    791791    <property name="abcl.test.src.dir"
    792         value="${basedir}/test/src"/>
     792              value="${basedir}/test/src"/>
    793793
    794794    <patternset id="abcl.test.source.java">
     
    799799
    800800    <property name="junit.path"
    801         value="${abcl.ext.dir}/junit-4.8.1.jar"/>
     801              value="${abcl.ext.dir}/junit-4.8.1.jar"/>
    802802
    803803
     
    822822          dest="${junit.path}"/>
    823823    </target>
    824  
     824       
    825825    <target name="abcl.test.compile"
    826       depends="abcl.test.pre-compile">
     826            depends="abcl.test.pre-compile">
    827827      <mkdir dir="${abcl.test.classes.dir}"/>
    828828      <javac destdir="${abcl.test.classes.dir}"
    829        classpathref="abcl.test.compile.classpath"
    830        debug="true"
    831        target="1.5">
    832   <src path="${abcl.test.src.dir}"/>
    833   <patternset refid="abcl.test.source.java"/>
     829             classpathref="abcl.test.compile.classpath"
     830             debug="true"
     831             target="1.5">
     832        <src path="${abcl.test.src.dir}"/>
     833        <patternset refid="abcl.test.source.java"/>
    834834      </javac>
    835835    </target>
     
    841841
    842842    <target name="abcl.test"
    843       depends="abcl.test.java,abcl.test.lisp"/>
    844  
     843            depends="abcl.test.java,abcl.test.lisp"/>
     844       
    845845    <target name="abcl.test.java" depends="abcl.test.compile">
    846846      <java fork="true"
    847       classpathref="abcl.test.run.classpath"
    848       classname="org.junit.runner.JUnitCore">
     847            classpathref="abcl.test.run.classpath"
     848            classname="org.junit.runner.JUnitCore">
    849849        <arg value="org.armedbear.lisp.PathnameTest"/>
    850850        <arg value="org.armedbear.lisp.StreamTest"/>
     
    854854
    855855    <target name="abcl.test.lisp"
    856       depends="test.ansi.compiled,test.abcl,test.cl-bench"/>
     856            depends="test.ansi.compiled,test.abcl,test.cl-bench"/>
    857857
    858858    <target name="test.ansi.interpreted" depends="abcl.jar">
     
    860860      <record name="${abcl.test.log.file}" emacsmode="true" action="start" append="yes"/>
    861861      <java fork="true" dir="${basedir}"
    862       classpathref="abcl.classpath.dist"
    863       classname="org.armedbear.lisp.Main">
    864   <arg value="--noinit"/>
    865   <arg value="--eval"/><arg value="(require (quote asdf))"/>
    866   <arg value="--eval"/><arg value="(asdf:operate (quote asdf:load-op) :abcl)"/>
    867   <arg value="--eval"/><arg value="(asdf:operate (quote asdf:test-op) :ansi-interpreted)"/>
     862            classpathref="abcl.classpath.dist"
     863            classname="org.armedbear.lisp.Main">
     864        <arg value="--noinit"/>
     865        <arg value="--eval"/><arg value="(require (quote asdf))"/>
     866        <arg value="--eval"/><arg value="(asdf:operate (quote asdf:load-op) :abcl)"/>
     867        <arg value="--eval"/><arg value="(asdf:operate (quote asdf:test-op) :ansi-interpreted)"/>
    868868        <arg value="--eval"/><arg value="(ext:exit)"/>
    869869      </java>
     
    876876      <record name="${abcl.test.log.file}" emacsmode="true" action="start" append="yes"/>
    877877      <java fork="true" dir="${basedir}"
    878       classpathref="abcl.classpath.dist"
    879       classname="org.armedbear.lisp.Main">
    880   <arg value="--noinit"/>
    881   <arg value="--eval"/><arg value="(require (quote asdf))"/>
    882   <arg value="--eval"/><arg value="(asdf:operate (quote asdf:load-op) :abcl)"/>
    883   <arg value="--eval"/><arg value="(asdf:operate (quote asdf:test-op) :ansi-compiled)"/>
     878            classpathref="abcl.classpath.dist"
     879            classname="org.armedbear.lisp.Main">
     880        <arg value="--noinit"/>
     881        <arg value="--eval"/><arg value="(require (quote asdf))"/>
     882        <arg value="--eval"/><arg value="(asdf:operate (quote asdf:load-op) :abcl)"/>
     883        <arg value="--eval"/><arg value="(asdf:operate (quote asdf:test-op) :ansi-compiled)"/>
    884884        <arg value="--eval"/><arg value="(ext:exit)"/>
    885885      </java>
     
    892892      <record name="${abcl.test.log.file}" emacsmode="true" action="start" append="yes"/>
    893893      <java fork="true" dir="${basedir}"
    894       classpathref="abcl.classpath.dist"
    895       classname="org.armedbear.lisp.Main">
    896   <arg value="--noinit"/>
    897   <arg value="--eval"/><arg value="(require (quote asdf))"/>
    898   <arg value="--eval"/><arg value="(asdf:operate (quote asdf:load-op) :abcl)"/>
    899   <arg value="--eval"/><arg value="(asdf:operate (quote asdf:test-op) :abcl-test-lisp)"/>
     894            classpathref="abcl.classpath.dist"
     895            classname="org.armedbear.lisp.Main">
     896        <arg value="--noinit"/>
     897        <arg value="--eval"/><arg value="(require (quote asdf))"/>
     898        <arg value="--eval"/><arg value="(asdf:operate (quote asdf:load-op) :abcl)"/>
     899        <arg value="--eval"/><arg value="(asdf:operate (quote asdf:test-op) :abcl-test-lisp)"/>
    900900        <arg value="--eval"/><arg value="(ext:exit)"/>
    901901      </java>
     
    908908      <record name="${abcl.test.log.file}" emacsmode="true" action="start" append="yes"/>
    909909      <java fork="true" dir="${basedir}"
    910       classpathref="abcl.classpath.dist"
    911       classname="org.armedbear.lisp.Main">
    912   <arg value="--noinit"/>
    913   <arg value="--eval"/><arg value="(require (quote asdf))"/>
    914   <arg value="--eval"/><arg value="(asdf:operate (quote asdf:load-op) :abcl)"/>
    915   <arg value="--eval"/><arg value="(asdf:operate (quote asdf:test-op) :cl-bench)"/>
     910            classpathref="abcl.classpath.dist"
     911            classname="org.armedbear.lisp.Main">
     912        <arg value="--noinit"/>
     913        <arg value="--eval"/><arg value="(require (quote asdf))"/>
     914        <arg value="--eval"/><arg value="(asdf:operate (quote asdf:load-op) :abcl)"/>
     915        <arg value="--eval"/><arg value="(asdf:operate (quote asdf:test-op) :cl-bench)"/>
    916916        <arg value="--eval"/><arg value="(ext:exit)"/>
    917917      </java>
Note: See TracChangeset for help on using the changeset viewer.