Changeset 966
- Timestamp:
- 07/25/08 11:21:41 (3 months ago)
- Files:
-
- branches/arnoschn/cache/CiReportTask.php (modified) (2 diffs)
- branches/arnoschn/cache/build-test.xml (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/arnoschn/cache/CiReportTask.php
r965 r966 61 61 $environments[]=$environment; 62 62 $this->setInFile($file); 63 $this->log("Report available in:\n\n".$dir.DIRECTORY_SEPARATOR."phpunit2-noframes.html");63 64 64 parent::main(); 65 65 } … … 69 69 70 70 file_put_contents($summaryFile, $contents); 71 $this->log("Reports available in:\n\n".$summaryFile); 71 72 } 72 73 /** branches/arnoschn/cache/build-test.xml
r963 r966 144 144 <phingCall target="generate-config-file"> 145 145 <param name="type" value="mysql" /> 146 146 <param name="name" value="mysql" /> 147 147 <param name="testing.url" value="${testing.url}" /> 148 148 </phingCall> … … 150 150 <target name="generate-config-postgres"> 151 151 <phingCall target="generate-config-file"> 152 <param name="type" value="p ostgres" />153 152 <param name="type" value="pgsql" /> 153 <param name="name" value="postgres" /> 154 154 <param name="testing.url" value="${testing.url}" /> 155 155 </phingCall> … … 158 158 <phingCall target="generate-config-file"> 159 159 <param name="type" value="sqlite" /> 160 <param name="name" value="sqlite" /> 160 161 <param name="file.based" value="1" /> 161 162 <param name="testing.url" value="${testing.url}" /> … … 167 168 <equals arg1="${file.based}" arg2="1" /> 168 169 <then> 169 <input propertyname="file" message="[${ type}] Please provide which database-file should be used" promptChar=":" defaultValue="" />170 <input propertyname="file" message="[${name}] Please provide which database-file should be used" promptChar=":" defaultValue="" /> 170 171 <property name="database" value="" /> 171 172 <property name="host" value="" /> … … 175 176 176 177 <else> 177 <input propertyname="host" message="[${ type}] Please provide which host should be used" promptChar=":" defaultValue="localhost" />178 <input propertyname="host" message="[${name}] Please provide which host should be used" promptChar=":" defaultValue="localhost" /> 178 179 <property name="file" value="" /> 179 <input propertyname="database" message="[${ type}] Please provide which database should be used" promptChar=":" defaultValue="framework_tests" />180 <input propertyname="user" message="[${ type}] Please provide which user should be used" promptChar=":" defaultValue="akelos" />181 <input propertyname="password" message="[${ type}] Please provide which password should be used" promptChar=":" />180 <input propertyname="database" message="[${name}] Please provide which database should be used" promptChar=":" defaultValue="framework_tests" /> 181 <input propertyname="user" message="[${name}] Please provide which user should be used" promptChar=":" defaultValue="akelos" /> 182 <input propertyname="password" message="[${name}] Please provide which password should be used" promptChar=":" /> 182 183 </else> 183 184 </if> 184 185 185 186 186 <copy file="${config.dir}/TPL-config-testing.php" tofile="${config.dir}/${ type}-testing.php" overwrite="true">187 <copy file="${config.dir}/TPL-config-testing.php" tofile="${config.dir}/${name}-testing.php" overwrite="true"> 187 188 <filterchain> 188 189 <expandproperties />
