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:
parent
5b5e8f55a2
commit
8a6efaae63
1 changed files with 3 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue