diff options
author | jungwook.ryu <jungwook.ryu@samsung.com> | 2014-10-27 11:05:27 +0900 |
---|---|---|
committer | jungwook.ryu <jungwook.ryu@samsung.com> | 2014-10-27 11:05:43 +0900 |
commit | b8e1629bdd4417f01c61fee85b9fa5697fb832d5 (patch) | |
tree | 380def52fea2a6c6194e4112349928bf1d3cd759 | |
parent | dd8a5b0598f899a3825277f83efba916d326eb83 (diff) | |
download | dynamic-analysis-ide-eplugin-b8e1629bdd4417f01c61fee85b9fa5697fb832d5.tar.gz dynamic-analysis-ide-eplugin-b8e1629bdd4417f01c61fee85b9fa5697fb832d5.tar.bz2 dynamic-analysis-ide-eplugin-b8e1629bdd4417f01c61fee85b9fa5697fb832d5.zip |
Bug fix - launching error using "run as" after "profile with dynamic analyzer".
Change-Id: I4779987002d1196543ed524bed189964031d4d8d
Signed-off-by: jungwook.ryu <jungwook.ryu@samsung.com>
3 files changed, 10 insertions, 1 deletions
diff --git a/org.tizen.dynamicanalysis.ide.eplugin/src/org/tizen/dynamicanalysis/ide/eplugin/launch/TizenNativeApplicationDADelegate.java b/org.tizen.dynamicanalysis.ide.eplugin/src/org/tizen/dynamicanalysis/ide/eplugin/launch/TizenNativeApplicationDADelegate.java index e85558b..28f19bb 100644 --- a/org.tizen.dynamicanalysis.ide.eplugin/src/org/tizen/dynamicanalysis/ide/eplugin/launch/TizenNativeApplicationDADelegate.java +++ b/org.tizen.dynamicanalysis.ide.eplugin/src/org/tizen/dynamicanalysis/ide/eplugin/launch/TizenNativeApplicationDADelegate.java @@ -281,6 +281,12 @@ public class TizenNativeApplicationDADelegate extends DALog.dlgErrorMessage(Labels.MESSAGE_ERROR, e.getMessage()); } finally { rollBackBuildConfigSetting(project); + if (!launch.isTerminated()) { + launch.terminate(); + } + ILaunchManager launchManager = DebugPlugin.getDefault() + .getLaunchManager(); + launchManager.removeLaunch(launch); } } } diff --git a/package/changelog b/package/changelog index bda26c8..1786262 100644 --- a/package/changelog +++ b/package/changelog @@ -1,3 +1,6 @@ +* 2.2.16 +Bug fix - launching error using "run as" after "profile with dynamic analyzer". +== jungwook.ryu <jungwook.ryu@samsung.com> 2014-10-27 * 2.2.15 Remove factors concerning build type "Dynamic Analyzer" == jungwook.ryu <jungwook.ryu@samsung.com> 2014-10-23 diff --git a/package/pkginfo.manifest b/package/pkginfo.manifest index 3b691f7..9bf5fd7 100644 --- a/package/pkginfo.manifest +++ b/package/pkginfo.manifest @@ -1,4 +1,4 @@ -Version:2.2.15 +Version:2.2.16 Source:dynamic-analysis-ide-eplugin Maintainer:Jungwook Ryu <jungwook.ryu@samsung.com>, Juyoung Kim <j0.kim@samsung.com> |