[drlvm][build] build.sh smoke.test broken with unsatisfied convert-test dependency
3 Message(s) by 2 Author(s) originally posted in harmony developer java
| From: Egor Pasko |
Date: Thursday, December 27, 2007
|
$subj
Author: varlax
Date: Mon Dec 24 23:59:43 2007
New Revision: 606771
URL:
http://svn.apache.org/viewvc?rev=606771&view=rev
Log:
Allow using both package and filepath formats for selecting
smoke tests;
other minor enhancements.
<convert-test blablabla isn't defined, so ant fails here with message:
Couldn't create task or type of type: convert-test
if I add the convert-test code to the working_vm/build/make/build.xml,
everything works:
<macrodef name="convert-test">
<attribute name="from"/>
<attribute name="to"/>
<sequential>
<pathconvert property="@xxxxxxxxxxx{to}" setonempty="no">
<path path="${@xxxxxxxxxxx{from}}"/>
<chainedmapper>
<filtermapper>
<replaceregex pattern="\.JAVA$$"/>
</filtermapper>
<unpackagemapper from="${basedir}${file.separator}*" to="*.JAVA"/>
</chainedmapper>
</pathconvert>
</sequential>
</macrodef>
but I don't want to commit this copypaste immediately. How do we
share ant code between VM & Classlib in the right way?
--
Egor Pasko
| From: George Timoshenko |
Date: Friday, December 28, 2007
|
Yesterday I was forced to update and rebuild classlib because of the
problem.
I don't know what is better to duplicate the code for DRLVM and
classlib or just wait until everybody beat the problem by rebuilding
fresh classlib and the problem disappeares.
| From: Egor Pasko |
Date: Friday, December 28, 2007
|
wrote in message:
Yesterday I was forced to update and rebuild classlib because of the
problem.
I don't know what is better to duplicate the code for DRLVM and
classlib or just wait until everybody beat the problem by rebuilding
fresh classlib and the problem disappeares.
cool! works for me after svn-upping the classlib. Thanks, George!
--
Egor Pasko
Next Message: [drlvm][object][testing] Snapshot testing for uncompressed references mode