mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.2' into cassandra-3.0
This commit is contained in:
commit
8378bfc510
|
|
@ -1224,11 +1224,13 @@
|
|||
classpath which only contains what we expect users to need.
|
||||
-->
|
||||
<target name="test-clientutil-jar" depends="build-test,jar" description="Test clientutil jar">
|
||||
<mkdir dir="${build.test.dir}/output"/>
|
||||
<junit fork="on" forkmode="perTest" failureproperty="testfailed" maxmemory="1024m" timeout="${test.timeout}">
|
||||
<!-- Note that the test pass without that next line, but it prints an ugly error message -->
|
||||
<jvmarg value="-Djava.library.path=${build.lib}/sigar-bin"/>
|
||||
<test name="org.apache.cassandra.serializers.ClientUtilsTest" />
|
||||
<test name="org.apache.cassandra.serializers.ClientUtilsTest" todir="${build.test.dir}/output"/>
|
||||
<formatter type="brief" usefile="false" />
|
||||
<formatter type="xml" usefile="true"/>
|
||||
<classpath>
|
||||
<pathelement location="${test.classes}" />
|
||||
<pathelement location="${build.dir}/${ant.project.name}-clientutil-${version}.jar" />
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ test:
|
|||
- sudo apt-get update; sudo apt-get install wamerican:
|
||||
parallel: true
|
||||
override:
|
||||
- case $CIRCLE_NODE_INDEX in 0) ant eclipse-warnings; ant test -Dtest.runners=1;; 1) ant long-test ;; 2) ant test-compression ;;esac:
|
||||
- case $CIRCLE_NODE_INDEX in 0) ant test -Dtest.runners=1 ;; 1) ant long-test ;; 2) ant test-compression ;; 3) ant eclipse-warnings ;;esac:
|
||||
parallel: true
|
||||
|
||||
post:
|
||||
|
|
|
|||
Loading…
Reference in New Issue