Skip to content

Commit

Permalink
null
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed May 30, 2024
1 parent 9fdc70e commit 39301fe
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ public static int testInvariants(String inputFile, boolean doRange) throws IOExc
try (final PrintWriter out2 =
FileUtilities.openUTF8Writer(
Settings.Output.GEN_DIR,
"UnicodeTestResults." + (doHtml ? "html" : "txt"))) {
"UnicodeTestResults"
+ (inputFile == null ? "" : "-" + inputFile.split("\\.")[0])
+ "."
+ (doHtml ? "html" : "txt"))) {
final StringWriter writer = new StringWriter();
try (PrintWriter out3 = new PrintWriter(writer)) {
out = out3;
Expand Down

0 comments on commit 39301fe

Please sign in to comment.