1

I have downloaded apache-cassandra-1.2.8-src inside that I have a directory called pylib which comes with a test suite. I need to execute the test suite to see if all the testcases pass or not. How do I run the python test suite?

4

1 に答える 1

0

Cassandra テストはtestディレクトリにあります。実行ant -pすると、テストを実行するためのさまざまなオプションがあることがわかります。

long-test                   Execute functional tests
pbs-test                    Tests PBS predictor
test                        Execute unit tests
test-clientutil-jar         Test clientutil jar
test-compression            Execute unit tests with sstable compression enabled

これらのいずれかを実行するには、実行する必要がありますant <taskname>

于 2013-09-08T20:16:15.853 に答える