Re: Error running 'ant test'

2016-05-19 Thread Oleksandr Petrov
It passes for me, and seems to work on the CI. Rule of thumb for me personally is: * make sure that everything cleaned up (no c* instances running, no tests running at same time) * make sure the latest version is pulled * in case something failed, try running more than once If it constantly

Re: Error running 'ant test'

2016-05-19 Thread Jonathan Ellis
Also, sometimes fragile tests are sensitive to the order in which they are run. If it passes on CI but not locally that may be what's going on. You can try running just the failed class (easy in ant) or test (hard in ant, easy in intellij/eclipse) in isolation and see if that makes a difference.

Re: Error running 'ant test'

2016-05-19 Thread Sam Tunnicliffe
CassandraIndexTest is intermittently failing on trunk & 3.0 at the moment: http://cassci.datastax.com/view/trunk/job/trunk_utest/1378/testReport/ http://cassci.datastax.com/view/cassandra-3.0/job/cassandra-3.0_utest/747/testReport/ On Thu, May 19, 2016 at 3:24 PM, Oleksandr Petrov < oleksandr.pet

Re: Error running 'ant test'

2016-05-19 Thread Mahdi Mohammadi
I ran your command and test is successful but still there are tests which are failing and I am confused. My Java version is 1.8.0_74 and OS is 64 bit Debian (Vagrant box). When I run: *ant clean && ant test -Dtest.name=CassandraIndexTest *(both on trunk and cassandra-3.0), I get error: * [juni

Re: Error running 'ant test'

2016-05-19 Thread Oleksandr Petrov
I just tried it locally, `ant clean && ant test -Dtest.name=TopKSamplerTest` works just fine (tried the other test, too). What's your JDK version? I can't see anything obvious that is wrong. If the branch is up-to-date, it usually has to build. On Thu, May 19, 2016 at 5:12 AM Mahdi Mohammadi wro