treat exe same as cwd, skip assertion if empty
This commit is contained in:
parent
29b59a0d2b
commit
b452be5c40
|
@ -54,10 +54,12 @@ public class TestProcExe extends SigarTestCase {
|
||||||
|
|
||||||
traceln("exe='" + exe.getName() + "'");
|
traceln("exe='" + exe.getName() + "'");
|
||||||
|
|
||||||
assertTrue(exeFile.exists());
|
if (exe.getName().length() > 0) {
|
||||||
|
assertTrue(exeFile.exists());
|
||||||
|
|
||||||
//win32 has .exe
|
//win32 has .exe
|
||||||
assertTrue(exeFile.getName().startsWith("java"));
|
assertTrue(exeFile.getName().startsWith("java"));
|
||||||
|
}
|
||||||
} catch (SigarNotImplementedException e) {
|
} catch (SigarNotImplementedException e) {
|
||||||
//ok
|
//ok
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue