-
Notifications
You must be signed in to change notification settings - Fork 736
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Print actual string arguments with -Xtrace (part 1) #20641
Print actual string arguments with -Xtrace (part 1) #20641
Conversation
@TobiAjila could you please review for comments/concerns/feedback? Thanks |
@keithc-ca fyi the ras change. |
In the commit message dont "Closes: #16416" since you will create another PR that adds the ability to toggle the length of the String, and another one for testing. You can rename the title of the commit "Feature request: Print actual String arguments with Xtrace part 1", and then add a description to the commit message indicating what the future parts will be. |
Please squash commits |
@keithc-ca Please review these changes |
343c787
to
2c11a5c
Compare
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also update the commit message and the description here - the prefix "Feature request: " is not helpful.
The lines in the body of the commit message should be no longer than 72 characters each.
The "Signed-off-by:" line is missing <>
; you want to write
Signed-off-by: Nick Kamal <[email protected]>
55aa497
to
4772a09
Compare
… following eclipse-openj9#20641 Adding cmdline option to specify string argument length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 1 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=invalid input" There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
@keithc-ca Please take another look at this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggest the commit message should spell "string" consistently, include the hyphen in "-Xtrace" and use parentheses consistently when referring to "(part 1)", "(part 2)" or "(part 3)" (in lowercase).
eea476f
to
44a699a
Compare
The changes reflect the feature request eclipse-openj9#16416. Print the actual string instead of address at max of 32 characters. Subsequent PRs: cmdline option for length (part 2) and tests (part 3). Signed-off-by: Nick Kamal <[email protected]> Print actual string arguments with -Xtrace (part 1) The changes reflect the feature request eclipse-openj9#16416. Print the actual string instead of address at max of 32 characters. Subsequent PRs: cmdline option for length (part 2) and tests (part 3). Signed-off-by: Nick Kamal <[email protected]> Print actual String arguments with Xtrace part 1 The changes reflect the feature request eclipse-openj9#16416. Print the actual string instead of address at max of 32 characters. Subsequent PRs: cmdline option for length (Part 2) and tests (Part 3). Signed-off-by: Nick Kamal <[email protected]>
Jenkins test sanity amac,win jdk21 |
Aborting Windows build:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested locally.
The changes reflect the feature request eclipse-openj9#16416. Adding cmdline option to specify string argument length. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If methodStrArgLen = 0 or unspecified, default to 32. Other invalid inputs result in the input error. There will be subsequent PR for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> Print actual string arguments with -Xtrace (part 2) The changes reflect the feature request eclipse-openj9#16416. Adding cmdline option to specify string argument length. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If methodStrArgLen = 0 or unspecified, default to 32. Other invalid inputs result in the input error. There will be subsequent PR for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> Feature request: Print actual String arguments with Xtrace part 1 The changes reflect the feature request eclipse-openj9#16416. Instead of printing the memory address for string arguments, print the actual string at max of 32 characters. There will be subsequent PRs for cmdline option for string length (Part 2) and tests (Part 3). Signed-off-by: Nick Kamal [email protected] The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 following eclipse-openj9#20641 Adding cmdline option to specify string argument length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 1 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=invalid input" There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… following eclipse-openj9#20641 Adding cmdline option to specify string argument length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 1 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=invalid input" There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
…- part 2 following eclipse-openj9#20641" This reverts commit 81ebf3b.
…- part 2 of eclipse-openj9#20641" This reverts commit 5fed7b4.
…- part 2 of eclipse-openj9#20641" This reverts commit 9d207fb.
…- part 2 of eclipse-openj9#20641" This reverts commit 1d2c828.
…- part 2 of eclipse-openj9#20641" This reverts commit 582d967.
…- part 2 of eclipse-openj9#20641" This reverts commit 148a6de.
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
… following eclipse-openj9#20641 Adding cmdline option to specify string argument length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 1 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=invalid input" There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]>
…- part 2 following eclipse-openj9#20641" This reverts commit 81ebf3b.
…- part 2 of eclipse-openj9#20641" This reverts commit 5fed7b4.
…- part 2 of eclipse-openj9#20641" This reverts commit 9d207fb.
…- part 2 of eclipse-openj9#20641" This reverts commit 1d2c828.
…- part 2 of eclipse-openj9#20641" This reverts commit 582d967.
…- part 2 of eclipse-openj9#20641" This reverts commit 148a6de.
The changes reflect the feature request eclipse-openj9#16416. Instead of printing the memory address for string arguments, print the actual string at max of 32 characters. There will be subsequent PRs for cmdline option for string length (Part 2) and tests (Part 3). Signed-off-by: Nick Kamal [email protected] The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> Print actual String arguments with Xtrace part 1 The changes reflect the feature request eclipse-openj9#16416. Print the actual string instead of address at max of 32 characters. Subsequent PRs: cmdline option for length (Part 2) and tests (Part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 following eclipse-openj9#20641 Adding cmdline option to specify string argument length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 1 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=invalid input" There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 3 Signed-off-by: Nick Kamal <[email protected]> cmdline tests for -Xtrace:methodstrarglen Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]> Update xtraceTests.xml Feature request: Print actual String arguments with Xtrace part 1 The changes reflect the feature request eclipse-openj9#16416. Instead of printing the memory address for string arguments, print the actual string at max of 32 characters. There will be subsequent PRs for cmdline option for string length (Part 2) and tests (Part 3). Signed-off-by: Nick Kamal [email protected] The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> Print actual String arguments with Xtrace part 1 The changes reflect the feature request eclipse-openj9#16416. Print the actual string instead of address at max of 32 characters. Subsequent PRs: cmdline option for length (Part 2) and tests (Part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 following eclipse-openj9#20641 Adding cmdline option to specify string argument length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 1 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=invalid input" There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 3 Signed-off-by: Nick Kamal <[email protected]> cmdline tests for -Xtrace:methodstrarglen Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]> Update xtraceTests.xml Revert "Update xtraceTests.xml" This reverts commit a02170c. Revert "cmdline tests for -Xtrace:methodstrarglen" This reverts commit f1a4e90. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 3" This reverts commit 44209db. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 following eclipse-openj9#20641" This reverts commit 81ebf3b. Revert "Print actual String arguments with Xtrace part 1" This reverts commit c5ca003. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 5fed7b4. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 9d207fb. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 1d2c828. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 582d967. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 148a6de. Revert "Feature request: Print actual String arguments with Xtrace part 1" This reverts commit 820e22e. Feature request: Print actual String arguments with Xtrace part 1 The changes reflect the feature request eclipse-openj9#16416. Instead of printing the memory address for string arguments, print the actual string at max of 32 characters. There will be subsequent PRs for cmdline option for string length (Part 2) and tests (Part 3). Signed-off-by: Nick Kamal [email protected] The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641 Adding cmdline option to specify string length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 0 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=<invalid input> " There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> Print actual String arguments with Xtrace part 1 The changes reflect the feature request eclipse-openj9#16416. Print the actual string instead of address at max of 32 characters. Subsequent PRs: cmdline option for length (Part 2) and tests (Part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 2 following eclipse-openj9#20641 Adding cmdline option to specify string argument length to be printed. -Xtrace:methodstrarglen=[1-128] methodStrArgLen takes an unsigned integer value from 1 to 128 If no methodStrArgLen is specified, or is set to 0, the printed length is the default value of 32. Other invalid inputs result in the following: "Error processing trace option, detail: methodstrarglen takes an unsigned integer value from 1 to 128 Trace option unrecognized: -Xtrace:methodStrArgLen Error processing trace option: -Xtrace:methodStrArgLen=invalid input" There will be subsequent PRs for tests (part 3). Signed-off-by: Nick Kamal <[email protected]> The changes reflect the feature request eclipse-openj9#16416 - part 3 Signed-off-by: Nick Kamal <[email protected]> cmdline tests for -Xtrace:methodstrarglen Closes: eclipse-openj9#16416 Signed-off-by: Nick Kamal <[email protected]> Update xtraceTests.xml Revert "Update xtraceTests.xml" This reverts commit a02170c. Revert "cmdline tests for -Xtrace:methodstrarglen" This reverts commit f1a4e90. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 3" This reverts commit 44209db. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 following eclipse-openj9#20641" This reverts commit 81ebf3b. Revert "Print actual String arguments with Xtrace part 1" This reverts commit c5ca003. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 5fed7b4. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 9d207fb. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 1d2c828. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 582d967. Revert "The changes reflect the feature request eclipse-openj9#16416 - part 2 of eclipse-openj9#20641" This reverts commit 148a6de. Revert "Feature request: Print actual String arguments with Xtrace part 1" This reverts commit 820e22e.
The changes reflect the feature request #16416.
Print the actual string instead of address at max of 32 characters.
Subsequent PRs: cmdline option for length (part 2) and tests (part 3).
Signed-off-by: Nick Kamal <[email protected]>