no error dialog for mspsim breakpoints

This commit is contained in:
fros4943 2010-08-13 09:53:33 +00:00
parent 885fee3561
commit bcc62fbb65

View file

@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
* $Id: Simulation.java,v 1.64 2010/03/26 09:26:22 fros4943 Exp $ * $Id: Simulation.java,v 1.65 2010/08/13 09:53:33 fros4943 Exp $
*/ */
package se.sics.cooja; package se.sics.cooja;
@ -277,8 +277,12 @@ public class Simulation extends Observable implements Runnable {
} }
} }
} catch (RuntimeException e) { } catch (RuntimeException e) {
logger.fatal("Simulation stopped due to error: " + e.getMessage(), e); if ("MSPSim requested simulation stop".equals(e.getMessage())) {
/* XXX Should be*/
logger.info("Simulation stopped due to MSPSim breakpoint");
} else {
logger.fatal("Simulation stopped due to error: " + e.getMessage(), e);
if (!GUI.isVisualized()) { if (!GUI.isVisualized()) {
/* Quit simulator if in test mode */ /* Quit simulator if in test mode */
System.exit(1); System.exit(1);
@ -286,6 +290,7 @@ public class Simulation extends Observable implements Runnable {
GUI.showErrorDialog(GUI.getTopParentContainer(), "Simulation error", e, false); GUI.showErrorDialog(GUI.getTopParentContainer(), "Simulation error", e, false);
} }
} }
}
isRunning = false; isRunning = false;
simulationThread = null; simulationThread = null;
stopSimulation = false; stopSimulation = false;