-
-
Notifications
You must be signed in to change notification settings - Fork 98
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
Add jdk vendor in TKG #142
Conversation
tested in Grinder_TKG/1130,Grinder_TKG/1132 (randomly specified vendors in tests) |
- TKG will check if JDK_VENDOR matches vendor defined in playlist Signed-off-by: renfeiw <renfeiw@ca.ibm.com>
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.
thanks @renfeiw !
} else if (vendorLC.contains("oracle")) { | ||
return "oracle"; | ||
} else { | ||
System.out.println("Warning: cannot determine vendor, use System.getProperty('java.vendor')=" + vendor + " directly.\n"); |
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.
I like in particular how you handled this (versus my hard fail version), it means ones we may have missed can still proceed to use 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.
LGTM
This is an enhancement and we will merge it after the release. |
Signed-off-by: renfeiw renfeiw@ca.ibm.com