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 250650 - "Debug Core File" scenario doesn't work
Summary: "Debug Core File" scenario doesn't work
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 8.1
Hardware: All All
: P2 normal (vote)
Assignee: henk89
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-02-24 09:20 UTC by soldatov
Modified: 2015-02-27 03:59 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
gdb log (10.15 KB, text/plain)
2015-02-24 09:20 UTC, soldatov
Details

Note You need to log in before you can comment on or make changes to this bug.
Description soldatov 2015-02-24 09:20:22 UTC
Created attachment 152172 [details]
gdb log

test.cpp
========================================
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char** argv) {
  int *p = NULL;
  *p = 5;
  return 0;
}
========================================
Makefile
========================================
test: test.cpp
	g++ -g -o test test.cpp

clean:
	rm -f test core

========================================

I checked FullRemote and "System level file sharing" cases, but I can't debug remote core file via "Debug Core File" menu item.
Comment 1 soldatov 2015-02-24 09:22:54 UTC
I can't investigate local 'core' file too.
Comment 2 henk89 2015-02-26 10:51:52 UTC
Fixed in:
http://hg.netbeans.org/cnd-main/rev/f3df8ac38656
Comment 3 Quality Engineering 2015-02-27 03:59:47 UTC
Integrated into 'main-silver', will be available in build *201502270001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/f3df8ac38656
User: Nikolay Koldunov <henk89@netbeans.org>
Log: Fixed #250650 - "Debug Core File" scenario doesn't work