-Dsigar.testVerbose=true will turn on verbose
This commit is contained in:
parent
0ecb3766bc
commit
9ba9ce1a23
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue