From b2dc4d46239501f5b1def5e03eeea6222dfdec0e Mon Sep 17 00:00:00 2001
From: Jonathan Guinet <jonathan.guinet@c-s.fr>
Date: Fri, 4 Nov 2011 15:58:22 +0100
Subject: [PATCH] BUG: problem in status in Wrapper launcher

---
 .../otbApplicationLauncherCommandLine.cxx     |  2 +-
 .../otbWrapperCommandLineLauncher.cxx         | 21 +++++++++++--------
 2 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/Code/Wrappers/CommandLine/otbApplicationLauncherCommandLine.cxx b/Code/Wrappers/CommandLine/otbApplicationLauncherCommandLine.cxx
index 8b079ef0a2..69810d3cd0 100644
--- a/Code/Wrappers/CommandLine/otbApplicationLauncherCommandLine.cxx
+++ b/Code/Wrappers/CommandLine/otbApplicationLauncherCommandLine.cxx
@@ -46,7 +46,7 @@ int main(int argc, char* argv[])
 
   if (launcher->Load(exp) == true)
     {
-    if (launcher->ExecuteAndWriteOutput() == false)
+    if (launcher->ExecuteAndWriteOutput() == true)
       {
       return EXIT_FAILURE;
       }
diff --git a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx
index d73f54c554..3f180ec298 100644
--- a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx
+++ b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx
@@ -138,26 +138,29 @@ CommandLineLauncher::Execute()
 {
   if( this->BeforeExecute() == false )
     {
-    return false;
+    return true;
     }
   
-  m_Application->Execute();
-  return true;
- 
+  int res = m_Application->Execute();
+  if (res == 0)
+    return false;
+  else return true;
 }
 
 
 bool
 CommandLineLauncher::ExecuteAndWriteOutput()
 {
-  if( this->BeforeExecute() == false )
+  if (this->BeforeExecute() == false)
     {
-    return false;
+    return true;
     }
 
-  m_Application->ExecuteAndWriteOutput();
-  return true;
- 
+  int res = m_Application->ExecuteAndWriteOutput();
+
+  if (res == 0)
+    return false;
+  else return true;
 }
 
 
-- 
GitLab