Message ID | CAPrxi5_W_AghtjXLHNBQhv3Zbk_AyTBJOnDtvFYk9dh3H9VVrw@mail.gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Noah, Thank u for your reply,it is working fine but Iam getting one more error in terminal is,BUILD FAILED /home/vu/java-rados/build.xml:134: Test IOContextTest failed Total time: 43 seconds and in TEST-IOContextTest.txt file the error is, Testsuite: IOContextTest Tests run: 11, Failures: 1, Errors: 0, Time elapsed: 32.302 sec Testcase: test_toString took 1.791 sec Testcase: test_getCluster took 2.116 sec Testcase: test_getPoolStats took 2.364 sec Testcase: test_setLocatorKey took 2.046 sec Testcase: test_write took 3.109 sec Testcase: test_writeFull took 3.188 sec Testcase: test_getLastVersion took 2.46 sec Testcase: test_append took 3.505 sec Testcase: test_truncate took 3.423 sec Testcase: test_getsetAttribute took 3.161 sec Testcase: test_getObjects took 5.101 sec FAILED junit.framework.AssertionFailedError: at IOContextTest.test_getObjects(Unknown Source) Thanks, Ramu. -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi Noah, Thank you for fixes and suggestions of compilation of java-rados , It's working fine now. Thanks, Ramu. -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/src/test/ClusterTest.java b/src/test/ClusterTest.java index 9b6bcb6..8b83bdd 100644 --- a/src/test/ClusterTest.java +++ b/src/test/ClusterTest.java @@ -25,13 +25,13 @@ public class ClusterTest { String val1, val2; /* set option to 2 and check that it set */ - val1 = "2"; + val1 = "true"; cluster.setConfigOption(opt, val1); val2 = cluster.getConfigOption(opt); assertTrue(val1.compareTo(val2) == 0); /* make sure the option wasn't already 2 */ - val1 = "1"; + val1 = "false"; cluster.setConfigOption(opt, val1); val2 = cluster.getConfigOption(opt); assertTrue(val1.compareTo(val2) == 0);