mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +02:00
8013132: Add a flag to turn off the output of the verbose verification code
Reviewed-by: johnc, brutisso
This commit is contained in:
parent
19d99e3d92
commit
f0ae855b07
15 changed files with 49 additions and 61 deletions
|
@ -445,12 +445,12 @@ class Universe: AllStatic {
|
|||
|
||||
// Debugging
|
||||
static bool verify_in_progress() { return _verify_in_progress; }
|
||||
static void verify(bool silent, VerifyOption option);
|
||||
static void verify(bool silent) {
|
||||
verify(silent, VerifyOption_Default /* option */);
|
||||
static void verify(VerifyOption option, const char* prefix, bool silent = VerifySilently);
|
||||
static void verify(const char* prefix, bool silent = VerifySilently) {
|
||||
verify(VerifyOption_Default, prefix, silent);
|
||||
}
|
||||
static void verify() {
|
||||
verify(false /* silent */);
|
||||
static void verify(bool silent = VerifySilently) {
|
||||
verify("", silent);
|
||||
}
|
||||
|
||||
static int verify_count() { return _verify_count; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue