Skip to content

Commit

Permalink
[build] just get the test classes compiled but do not run the tests i…
Browse files Browse the repository at this point in the history
…n core
  • Loading branch information
mkristian committed Nov 15, 2014
1 parent 5d40a90 commit 4ea2286
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions antlib/extra.xml
Expand Up @@ -3,7 +3,7 @@
<exec executable='mvn'>
<arg line='-q'/>
<arg line='-Ptest,bootstrap,main,complete'/>
<arg line='-Dmaven.test.skip'/>
<arg line='-DskipTests'/>
</exec>
</target>
<target name='test-jruby-jars-jruby.1.9' depends='mvn'>
Expand Down Expand Up @@ -196,4 +196,4 @@
<arg value='-v'/>
</exec>
</target>
<target description='test using jruby-complete or jruby-core/jruby-stdlib jars' name='test-jruby-jars' depends='test-jruby-jars-jruby.1.9,test-jruby-complete-slow,test-jruby-jars-objectspace,test-jruby-complete-rubicon.1.9'/></project>
<target description='test using jruby-complete or jruby-core/jruby-stdlib jars' name='test-jruby-jars' depends='test-jruby-jars-jruby.1.9,test-jruby-complete-slow,test-jruby-jars-objectspace,test-jruby-complete-rubicon.1.9'/></project>
2 changes: 1 addition & 1 deletion test/pom.rb
Expand Up @@ -145,6 +145,6 @@ def create_target( name, complete )
#TODO builder.create_target( 'mri.1.9', false )
builder.create_target( 'rubicon.1.9', true )

File.write(File.join(basedir, '..', 'antlib', 'extra.xml'), "<project basedir='..'>\n<target name='mvn'>\n<exec executable='mvn'>\n<arg line='-q'/>\n<arg line='-Ptest,bootstrap,main,complete'/>\n<arg line='-Dmaven.test.skip'/>\n</exec>\n</target>\n#{builder.targets}<target description='test using jruby-complete or jruby-core/jruby-stdlib jars' name='test-jruby-jars' depends='#{builder.names}'/></project>")
File.write(File.join(basedir, '..', 'antlib', 'extra.xml'), "<project basedir='..'>\n<target name='mvn'>\n<exec executable='mvn'>\n<arg line='-q'/>\n<arg line='-Ptest,bootstrap,main,complete'/>\n<arg line='-DskipTests'/>\n</exec>\n</target>\n#{builder.targets}<target description='test using jruby-complete or jruby-core/jruby-stdlib jars' name='test-jruby-jars' depends='#{builder.names}'/></project>")

end

0 comments on commit 4ea2286

Please sign in to comment.