private static TestSuite decorateSystemPropertyTests(TestSuite suite) {
Properties traceProps = new Properties();
traceProps.put("derby.drda.traceDirectory","/");
traceProps.put("derby.drda.traceAll","true");
suite.addTest(new SystemPropertyTestSetup(TestConfiguration.clientServerDecorator(
new NetworkServerControlApiTest("xtestTraceSystemPropertiesNoPermission")),
traceProps));
Properties traceProps2 = new Properties();
traceProps2.put("derby.drda.traceDirectory",getSystemProperty("derby.system.home") + "/trace");
traceProps2.put("derby.drda.traceAll","true");
suite.addTest(new SystemPropertyTestSetup(TestConfiguration.clientServerDecorator(
new NetworkServerControlApiTest("xtestTraceSystemPropertiesHasPermission")),
traceProps2));
return suite;
}