// Note: can't use $derbyTesting.codeclasses as on windows it has
// the slashes adjusted.
if (!TestConfiguration.loadingFromJars()) {
Properties propstmp = new Properties();
propstmp.put("sysinfotest.classesdir", findClassDir());
suite.addTest(new SystemPropertyTestSetup(decorateTest(), propstmp));
}
else
suite.addTest(decorateTest());
useProperties = true;
Properties props = new Properties();
if (!TestConfiguration.loadingFromJars())
props.put("sysinfotest.classesdir", findClassDir());
props.put("derby.infolog.append","true");
props.put("derby.locks.waitTimeout","120");
props.put("derby.language.logStatementText","true");
//#drda property ,test for it in sysinfo output
props.put("derby.drda.securityMechanism","USER_ONLY_SECURITY");
suite.addTest(new SystemPropertyTestSetup(decorateTest(), props));
return suite;
}