aboutsummaryrefslogtreecommitdiffstats
path: root/testing/openjdk13/Alpine_Bug_10126.java
diff options
context:
space:
mode:
Diffstat (limited to 'testing/openjdk13/Alpine_Bug_10126.java')
-rw-r--r--testing/openjdk13/Alpine_Bug_10126.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/testing/openjdk13/Alpine_Bug_10126.java b/testing/openjdk13/Alpine_Bug_10126.java
deleted file mode 100644
index a381c9ed70a..00000000000
--- a/testing/openjdk13/Alpine_Bug_10126.java
+++ /dev/null
@@ -1,13 +0,0 @@
-public class Alpine_Bug_10126 {
- public static void main(String[] args) throws Exception {
- try (java.net.Socket sock = javax.net.ssl.SSLSocketFactory.getDefault().createSocket("gitlab.alpinelinux.org", 443);
- java.io.InputStream in = sock.getInputStream();
- java.io.OutputStream out = sock.getOutputStream()) {
- out.write("GET / HTTP/1.0\n\nHost: gitlab.alpinelinux.org\n\nConnection: close\n\n\n\n".getBytes());
- out.flush();
- while (in.read(new byte[1024]) != -1) ;
- }
- System.out.println("Secured connection performed successfully");
- }
-}
-