Hamilton Turner created JENKINS-13931:
-----------------------------------------
Summary: sd card option requires multi-configuration axis name to
be in capital letters
Key: JENKINS-13931
URL: https://issues.jenkins-ci.org/browse/JENKINS-13931
Project: Jenkins
Issue Type: Bug
Components: android-emulator
Affects Versions: current
Reporter: Hamilton Turner
Assignee: Christopher Orr
Priority: Minor
Any text entered into the SD card option is automatically capitalized, which
can be a pain. For example, a multi-config with a user-defined axis of sd =
{16M 32M} can be entered into the SD card option box as ${sd}. However, all
builds fail, and looking at the project configuration shows that the text was
changed to ${SD}. The offending code is in EmulatorConfig.java:
sdCardSize = sdCardSize.toUpperCase().replaceAll("[ B]", "");
A similar issue probably exists with locale due to this:
deviceLocale = deviceLocale.substring(0, 2).toLowerCase() +"_"
+ deviceLocale.substring(3).toUpperCase();
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira