Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 335934 - Ignore case when processing CLI commands
Summary: Ignore case when processing CLI commands
Status: NEW
Alias: None
Product: CDT
Classification: Tools
Component: cdt-debug (show other bugs)
Version: 8.0   Edit
Hardware: PC Windows XP
: 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: 2011-02-01 03:53 EST by Abeer Bagul CLA
Modified: 2020-09-04 15:26 EDT (History)
3 users (show)

See Also:


Attachments
Patch to compare all CLI commands typed by user in a case-insensitive manner. (13.75 KB, patch)
2011-02-01 03:54 EST, Abeer Bagul CLA
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Abeer Bagul CLA 2011-02-01 03:53:45 EST
Build Identifier: I20101208-1300

GDB is case-insensitive when it comes to handling CLI commands. This means the user can type break, BREAK, bReaK, and all mean the same thing. So CDI and DSF code which processes CLI command strings (i.e. CLIProcessor, CLIEventProcessor, etc) should also be case insensitive.

Have attached a patch for the following three classes:
org.eclipse.cdt.debug.mi.core.CLIProcessor
org.eclipse.cdt.dsf.mi.service.command.CLIEventProcessor
org.eclipse.cdt.dsf.mi.service.command.CLIEventProcessor_7_0

Reproducible: Always
Comment 1 Abeer Bagul CLA 2011-02-01 03:54:58 EST
Created attachment 188028 [details]
Patch to compare all CLI commands typed by user in a case-insensitive manner.