Bug 474149 - in debug, program arguments can't begin with a # (sharp)
Summary: in debug, program arguments can't begin with a # (sharp)
Status: NEW
Alias: None
Product: CDT
Classification: Tools
Component: cdt-debug (show other bugs)
Version: 8.6.0   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: cdt-debug-inbox@eclipse.org CLA
QA Contact: Jonah Graham CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-08-03 09:27 EDT by patrick ficheux CLA
Modified: 2020-09-04 15:24 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description patrick ficheux CLA 2015-08-03 09:27:23 EDT
When I debug my app, I create a "debug configuration" and I fill "Program arguments" to specify ... the argument

If I fill => arg1
in the main(), argc==2, argv[1] == "arg1": (normal case)

If I fill this argument => #{arga:b,c}
in the main(), argc==1, "#{arga:b,c}" is missing

If I try with simple or double cote => '#{arga:b,c}' or "#{arga:b,c}"
"#{arga:b,c}" is still missing

Why the argument has been lost ?