1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

Better error printout

This commit is contained in:
Marc Khouzam 2010-04-29 18:35:34 +00:00
parent a3dbe6b359
commit 9b222a1f27

View file

@ -125,7 +125,8 @@ public class GDBProcessesTest extends BaseTestCase {
*/ */
IThreadDMData processData = (IThreadDMData)fWait.getReturnInfo(); IThreadDMData processData = (IThreadDMData)fWait.getReturnInfo();
Assert.assertNotNull("No process data is returned for Process DMC", processData); 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));
} }
/* /*