Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 335934

Summary: Ignore case when processing CLI commands
Product: [Tools] CDT Reporter: Abeer Bagul <abeerbagul>
Component: cdt-debugAssignee: cdt-debug-inbox <cdt-debug-inbox>
Status: NEW --- QA Contact: Jonah Graham <jonah>
Severity: normal    
Priority: P3 CC: cdtdoug, pawel.1.piech, pmac
Version: 8.0   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:
Attachments:
Description Flags
Patch to compare all CLI commands typed by user in a case-insensitive manner. none

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.