treat exe same as cwd, skip assertion if empty

This commit is contained in:
Doug MacEachern 2006-01-16 00:36:06 +00:00
parent 29b59a0d2b
commit b452be5c40
1 changed files with 5 additions and 3 deletions

View File

@ -54,10 +54,12 @@ public class TestProcExe extends SigarTestCase {
traceln("exe='" + exe.getName() + "'"); traceln("exe='" + exe.getName() + "'");
if (exe.getName().length() > 0) {
assertTrue(exeFile.exists()); 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
} }