Skip to content

Commit

Permalink
More precise test reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 5, 2024
1 parent 97ad304 commit 3cf949a
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,9 @@ private void testTimeZoneStrategyPattern_DateFormatSymbols_getZoneStrings(final
Java17Failures.add(locale);
// Mark as an assumption failure instead of a hard fail
System.err.printf(
"Java %s - Mark as an assumption failure instead of a hard fail: locale = '%s', parse = '%s'%n",
SystemUtils.JAVA_VERSION,
"Java %s %s - Mark as an assumption failure instead of a hard fail: locale = '%s', parse = '%s'%n",
SystemUtils.JAVA_VENDOR,
SystemUtils.JAVA_VM_VERSION,
localeStr, tzDisplay);
assumeTrue(false, localeStr);
continue;
Expand All @@ -142,7 +143,7 @@ private void testTimeZoneStrategyPattern_DateFormatSymbols_getZoneStrings(final
System.err.printf(
"Java %s %s - Mark as an assumption failure instead of a hard fail: locale = '%s', parse = '%s'%n",
SystemUtils.JAVA_VENDOR,
SystemUtils.JAVA_VERSION,
SystemUtils.JAVA_VM_VERSION,
localeStr, tzDisplay);
assumeTrue(false, localeStr);
continue;
Expand Down

0 comments on commit 3cf949a

Please sign in to comment.