Show
Ignore:
Timestamp:
02/03/09 04:17:05 (10 months ago)
Author:
sukyoungryu
Message:

[build] Fixed the wrong dependency of the testCruiseControl target and more.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/build.xml

    r3319 r3358  
    198198  <target name="help"> 
    199199    <echo message="ant checkEnv, checkNodesUptodate, checkOperatorsUptodate, 
    200                    checkParserUptodate, clean, cleanCache, compile, 
     200                   checkParserUptodate, clean, cleanCache, compile, compileAll, 
    201201                   compileCommon, compileCommonLint, compileLint, doc, 
    202202                   grammarCoverage, help, init, interpreter-jar, 
     
    680680 
    681681 
    682   <target name="interpreter-jar" depends="compile" 
     682  <target name="interpreter-jar" depends="compileAll" 
    683683          description="Package up the interpreter in a jar."> 
    684684    <jar 
     
    688688  </target> 
    689689 
    690   <target name="testOnly" depends="compile" 
     690  <target name="testOnly" depends="compileAll" 
    691691          description="Run specific tests (use -DtestPattern=...)."> 
    692692    <mkdir dir="${test.results}"/> 
     
    756756  </target> 
    757757 
    758   <target name="testCruiseControl" depends="compile" 
     758  <target name="testCruiseControl" depends="compileAll" 
    759759          description="Run all unit and system tests expected to pass."> 
    760760    <mkdir dir="${test.results}"/> 
     
    787787  </target> 
    788788 
    789   <target name="testNotPassing" depends="compile" 
     789  <target name="testNotPassing" depends="compileAll" 
    790790          description="Run system tests that aren't passing yet."> 
    791791    <mkdir dir="${test.results}"/> 
     
    812812  </target> 
    813813 
    814   <target name="testSpecData" depends="compile" 
     814  <target name="testSpecData" depends="compileAll" 
    815815          description="Run SpecDataJUTests."> 
    816816    <mkdir dir="${test.results}"/> 
     
    837837  </target> 
    838838 
    839   <target name="testSystem" depends="compile" 
     839  <target name="testSystem" depends="compileAll" 
    840840          description="Run SystemJUTests."> 
    841841    <mkdir dir="${test.results}"/> 
     
    885885  </target> 
    886886 
    887   <target name="testsyntax" depends="compile" 
     887  <target name="testsyntax" depends="compileAll" 
    888888          description="Run SyntaxAbstractionJUTests."> 
    889889    <mkdir dir="${test.results}"/> 
     
    911911  </target> 
    912912 
    913   <target name="testDemos" depends="compile" 
     913  <target name="testDemos" depends="compileAll" 
    914914          description="Run demos in a test harness."> 
    915915    <mkdir dir="${test.results}"/> 
     
    11141114  </target> 
    11151115 
    1116   <target name="doc" depends="compile"> 
     1116  <target name="doc" depends="compileAll"> 
    11171117    <javadoc overview="${src}/overview.html" destdir="${docs}" maxmemory="${junitMem}"> 
    11181118      <classpath refid="compile.classpath"/> 
     
    11311131 
    11321132  <target name="jar" 
    1133           depends="compile" 
     1133          depends="compileAll" 
    11341134          description="Package up a Fortress distribution as a self-extracting jar."> 
    11351135    <tstamp> 
     
    11891189  </target> 
    11901190 
    1191   <target name="installer" depends="compile" 
     1191  <target name="installer" depends="compileAll" 
    11921192          description="build a new installer as a jar"> 
    11931193    <delete dir="${installerDir}"/>