This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 188086
Collapse All | Expand All

(-)a/cnd.makeproject/src/org/netbeans/modules/cnd/makeproject/api/DefaultProjectActionHandler.java (-5 / +5 lines)
Lines 459-468 Link Here
459
                            StringBuilder res = new StringBuilder();
459
                            StringBuilder res = new StringBuilder();
460
                            res.append(MessageFormat.format(getString("TERMINATED"), actionName.toUpperCase())); // NOI18N
460
                            res.append(MessageFormat.format(getString("TERMINATED"), actionName.toUpperCase())); // NOI18N
461
                            res.append(" ("); // NOI18N
461
                            res.append(" ("); // NOI18N
462
                            if (process.exitValue() != 0) {
462
//                            if (process.exitValue() != 0) {
463
                                res.append(MessageFormat.format(getString("EXIT_VALUE"), process.exitValue())); // NOI18N
463
//                                res.append(MessageFormat.format(getString("EXIT_VALUE"), process.exitValue())); // NOI18N
464
                                res.append(' ');
464
//                                res.append(' ');
465
                            }
465
//                            }
466
                            res.append(MessageFormat.format(getString("TOTAL_TIME"), formatTime(System.currentTimeMillis() - startTimeMillis))); // NOI18N
466
                            res.append(MessageFormat.format(getString("TOTAL_TIME"), formatTime(System.currentTimeMillis() - startTimeMillis))); // NOI18N
467
                            res.append(')');
467
                            res.append(')');
468
468
Lines 471-477 Link Here
471
                            closeIO();
471
                            closeIO();
472
472
473
                            if (listener != null) {
473
                            if (listener != null) {
474
                                listener.executionFinished(process.exitValue());
474
                                listener.executionFinished(-1);
475
                            }
475
                            }
476
                            
476
                            
477
                            StatusDisplayer.getDefault().setStatusText(MessageFormat.format(getString("MSG_TERMINATED"), actionName)); // NOI18N
477
                            StatusDisplayer.getDefault().setStatusText(MessageFormat.format(getString("MSG_TERMINATED"), actionName)); // NOI18N
(-)a/cnd.testrunner/src/org/netbeans/modules/cnd/testrunner/TestRunnerActionHandler.java (-5 / +5 lines)
Lines 441-450 Link Here
441
                                StringBuilder res = new StringBuilder();
441
                                StringBuilder res = new StringBuilder();
442
                                res.append(MessageFormat.format(getString("TERMINATED"), actionName.toUpperCase())); // NOI18N
442
                                res.append(MessageFormat.format(getString("TERMINATED"), actionName.toUpperCase())); // NOI18N
443
                                res.append(" ("); // NOI18N
443
                                res.append(" ("); // NOI18N
444
                                if (process.exitValue() != 0) {
444
//                                if (process.exitValue() != 0) {
445
                                    res.append(MessageFormat.format(getString("EXIT_VALUE"), process.exitValue())); // NOI18N
445
//                                    res.append(MessageFormat.format(getString("EXIT_VALUE"), process.exitValue())); // NOI18N
446
                                    res.append(' ');
446
//                                    res.append(' ');
447
                                }
447
//                                }
448
                                res.append(MessageFormat.format(getString("TOTAL_TIME"), formatTime(System.currentTimeMillis() - startTimeMillis))); // NOI18N
448
                                res.append(MessageFormat.format(getString("TOTAL_TIME"), formatTime(System.currentTimeMillis() - startTimeMillis))); // NOI18N
449
                                res.append(')');
449
                                res.append(')');
450
450
Lines 454-460 Link Here
454
                            }
454
                            }
455
455
456
                            if (listener != null) {
456
                            if (listener != null) {
457
                                listener.executionFinished(process.exitValue());
457
                                listener.executionFinished(-1);
458
                            }
458
                            }
459
459
460
                            StatusDisplayer.getDefault().setStatusText(MessageFormat.format("MSG_TERMINATED", actionName)); // NOI18N
460
                            StatusDisplayer.getDefault().setStatusText(MessageFormat.format("MSG_TERMINATED", actionName)); // NOI18N
(-)a/cnd/src/org/netbeans/modules/cnd/actions/AbstractExecutorRunAction.java (-1 / +1 lines)
Lines 598-604 Link Here
598
                {
598
                {
599
                    closeOutputListener();
599
                    closeOutputListener();
600
                    if (listener != null) {
600
                    if (listener != null) {
601
                        listener.executionFinished(process.exitValue());
601
                        listener.executionFinished(-1);
602
                    }
602
                    }
603
                    shutdownSyncWorker();
603
                    shutdownSyncWorker();
604
                    postRunnable = new Runnable() {
604
                    postRunnable = new Runnable() {

Return to bug 188086