fix test assertion

This commit is contained in:
Doug MacEachern 2008-07-08 06:14:41 +00:00
parent 96839c028a
commit 3571d739a1

View File

@ -59,7 +59,9 @@ public class TestProcArgs extends SigarTestCase {
findArg(args, TestProcArgs.class.getName());
}
if (args.length > 0) {
assertTrue(args[0].indexOf("java") != -1);
}
//hpux has a limit less than what these args will be
if (!System.getProperty("os.name").equals("HP-UX")) {