Added backend test suite into the default tests that are run.
| | |
| | | |
| | | echo "Starting the build for the integration test suites" |
| | | # Execute the ant script and pass it any additional command-line arguments. |
| | | ${ANT_HOME}/bin/ant -verbose --noconfig ${*} |
| | | ${ANT_HOME}/bin/ant --noconfig ${*} |
| | | |
| | | if [ $? -eq 0 ]; then |
| | | echo "Successfully built the integration test suite" |
| | |
| | | <package name="org.opends.server.integration.frontend"/> |
| | | <package name="org.opends.server.integration.schema"/> |
| | | <package name="org.opends.server.integration.security"/> |
| | | <package name="org.opends.server.integration.backend"/> |
| | | </packages> |
| | | |
| | | <test name="precommit"> |
| | |
| | | <include name="frontend"/> |
| | | <include name="schema"/> |
| | | <include name="security"/> |
| | | <include name="backend"/> |
| | | </define> |
| | | |
| | | <define name="quickstart"> |
| | |
| | | <include name="security"/> |
| | | </define> |
| | | |
| | | <define name="backend"> |
| | | <include name="backend"/> |
| | | </define> |
| | | |
| | | <run> |
| | | <include name="all"/> |
| | | </run> |
| | |
| | | * Setup for backend tests |
| | | */ |
| | | @Parameters({ "hostname", "port", "bindDN", "bindPW", "integration_test_home", "logDir" }) |
| | | @Test(alwaysRun=true, dependsOnMethods = { "org.opends.server.integration.schema.SchemaRFCTests.testSchemaRFC35" }) |
| | | //@Test(alwaysRun=true, dependsOnMethods = { "org.opends.server.integration.ssl.jks.JKSStartupTests.testJKSStartup1" }) |
| | | @Test(alwaysRun=true, dependsOnMethods = { "org.opends.server.integration.security.JKSTLSTests.testJKSTLSTest7" }) |
| | | public void testBackendStartup1(String hostname, String port, String bindDN, String bindPW, String integration_test_home, String logDir) throws Exception |
| | | { |
| | | System.out.println("*********************************************"); |