mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Better error printout
This commit is contained in:
parent
a3dbe6b359
commit
9b222a1f27
1 changed files with 2 additions and 1 deletions
|
@ -125,7 +125,8 @@ public class GDBProcessesTest extends BaseTestCase {
|
|||
*/
|
||||
IThreadDMData processData = (IThreadDMData)fWait.getReturnInfo();
|
||||
Assert.assertNotNull("No process data is returned for Process DMC", processData);
|
||||
Assert.assertTrue("Process data should be executable name " + EXEC_NAME, processData.getName().contains(EXEC_NAME));
|
||||
Assert.assertTrue("Process data should be executable name " + EXEC_NAME + "but we got" + processData.getName(),
|
||||
processData.getName().contains(EXEC_NAME));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue