-Dsigar.testVerbose=true will turn on verbose

This commit is contained in:
Doug MacEachern 2006-01-13 18:46:13 +00:00
parent 0ecb3766bc
commit 9ba9ce1a23
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@ public abstract class SigarTestCase extends TestCase {
private static Sigar sigar = null; private static Sigar sigar = null;
private Properties props = new Properties(); private Properties props = new Properties();
private static boolean verbose = false; private static boolean verbose =
"true".equals(System.getProperty("sigar.testVerbose"));
private static PrintStream out = System.out; private static PrintStream out = System.out;
public SigarTestCase(String name) { public SigarTestCase(String name) {