1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 237468

Update JUnit tests to use the new initialize of GdbLaunch
This commit is contained in:
Marc Khouzam 2008-06-17 14:12:02 +00:00
parent 5b5e8f55a2
commit 8a6efaae63

View file

@ -141,7 +141,9 @@ public class TestLaunchDelegate extends LaunchConfigurationDelegate
@Override
public ILaunch getLaunch(ILaunchConfiguration configuration, String mode) throws CoreException {
return new GdbLaunch(configuration, mode, null);
GdbLaunch launch = new GdbLaunch(configuration, mode, null);
launch.initialize();
return launch;
}
private static String getProgramName(ILaunchConfiguration configuration) throws CoreException {