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.

Bug 169780 - 'Abort (core dumped)' system message should be displayed in Output Window
Summary: 'Abort (core dumped)' system message should be displayed in Output Window
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: execution (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: ilia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-08-04 10:01 UTC by soldatov
Modified: 2014-04-14 14:35 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description soldatov 2009-08-04 10:01:47 UTC
Scenario:
- Create empty C++ project
- Select 'Output Window' as console type
- Add such C++ file
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char** argv) {

    throw 1;
    return (EXIT_FAILURE);
}
- Run project
==> Output in IDE:
RUN FAILED (exit value 134, total time: 918ms)
Output in console:
-bash-3.2$ ./CppApplication_1/dist/Debug/SunStudio-Solaris-x86/cppapplication_1
Abort (core dumped)

I want to see 'Abort (core dumped)' message in IDE also.
Comment 1 Leonid Lenyashin 2009-09-28 12:42:16 UTC
Please evaluate
Comment 2 Andrew Krasny 2010-12-24 16:46:58 UTC
This is not a bug and requires quite a few efforts. The 'problem' is that this message comes from shell, not from a.out. 

As a 'workaround' user may:
a) switch to external terminal. 
b) in 'Run Command' specify '/bin/sh -c "${OUTPUT_PATH}"'

In this case we use shell and the message is printed out.

Transferring to enhancement.