mirror of https://github.com/apache/cassandra
Add byteman support for testing in 2.2
patch by yukim; reviewed by Paulo Motta for CASSANDRA-12377
This commit is contained in:
parent
dc8a017c79
commit
bc9af92e80
|
|
@ -1,4 +1,5 @@
|
|||
2.2.8
|
||||
* Add byteman support for testing (CASSANDRA-12377)
|
||||
* Fix INSERT JSON, fromJson() support of smallint, tinyint types (CASSANDRA-12371)
|
||||
* Restore JVM metric export for metric reporters (CASSANDRA-12312)
|
||||
* Release sstables of failed stream sessions only when outgoing transfers are finished (CASSANDRA-11345)
|
||||
|
|
|
|||
10
build.xml
10
build.xml
|
|
@ -116,6 +116,8 @@
|
|||
<property name="jacoco.finalexecfile" value="${jacoco.export.dir}/jacoco.exec" />
|
||||
<property name="jacoco.version" value="0.7.5.201505241946"/>
|
||||
|
||||
<property name="byteman.version" value="3.0.3"/>
|
||||
|
||||
<property name="ecj.version" value="4.4.2"/>
|
||||
|
||||
<condition property="maven-ant-tasks.jar.exists">
|
||||
|
|
@ -390,6 +392,11 @@
|
|||
<dependency groupId="org.jacoco" artifactId="org.jacoco.agent" version="${jacoco.version}"/>
|
||||
<dependency groupId="org.jacoco" artifactId="org.jacoco.ant" version="${jacoco.version}"/>
|
||||
|
||||
<dependency groupId="org.jboss.byteman" artifactId="byteman" version="${byteman.version}" scope="test"/>
|
||||
<dependency groupId="org.jboss.byteman" artifactId="byteman-submit" version="${byteman.version}" scope="test"/>
|
||||
<dependency groupId="org.jboss.byteman" artifactId="byteman-bmunit" version="${byteman.version}" scope="test"/>
|
||||
|
||||
|
||||
<dependency groupId="org.openjdk.jmh" artifactId="jmh-core" version="1.1.1"/>
|
||||
<dependency groupId="org.openjdk.jmh" artifactId="jmh-generator-annprocess" version="1.1.1"/>
|
||||
|
||||
|
|
@ -504,6 +511,9 @@
|
|||
<dependency groupId="net.sourceforge.cobertura" artifactId="cobertura"/>
|
||||
<dependency groupId="org.jacoco" artifactId="org.jacoco.agent"/>
|
||||
<dependency groupId="org.jacoco" artifactId="org.jacoco.ant"/>
|
||||
<dependency groupId="org.jboss.byteman" artifactId="byteman" scope="test"/>
|
||||
<dependency groupId="org.jboss.byteman" artifactId="byteman-submit" scope="test"/>
|
||||
<dependency groupId="org.jboss.byteman" artifactId="byteman-bmunit" scope="test"/>
|
||||
</artifact:pom>
|
||||
|
||||
<artifact:pom id="test-deps-pom"
|
||||
|
|
|
|||
Loading…
Reference in New Issue