Can I please get a review of this test-only change which proposes to remove the `test/jdk/com/sun/net/httpserver/Test9a.java` test?
When HttpServer was introduced long back, this test was introduced to cover that newly introduced API through https://bugs.openjdk.org/browse/JDK-6270015. When trying to address the current failure in this test as reported in https://bugs.openjdk.org/browse/JDK-8355412, it was noticed that another test `test/jdk/com/sun/net/httpserver/Test12.java` already tests what this `Test9a` does. `Test9a` focuses on `https` server and fixed length responses from the server. `Test12` does the same thing but additionally also tests `http` and chunked mode responses. So `Test9a`, although it runs more threads concurrently, there's no need to duplicate this testing between `Test12` and `Test9a`. This PR removes the `Test9a` test (and retains `Test12`). --------- - [x] I confirm that I make this contribution in accordance with the [OpenJDK Interim AI Policy](https://openjdk.org/legal/ai). ------------- Commit messages: - 8355412: com/sun/net/httpserver/Test9a.java failed on windows trying to delete file: java.nio.file.FileSystemException: The process cannot access the file because it is being used by another process Changes: https://git.openjdk.org/jdk/pull/31736/files Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=31736&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8355412 Stats: 204 lines in 1 file changed: 0 ins; 204 del; 0 mod Patch: https://git.openjdk.org/jdk/pull/31736.diff Fetch: git fetch https://git.openjdk.org/jdk.git pull/31736/head:pull/31736 PR: https://git.openjdk.org/jdk/pull/31736
