/hg/release/icedtea6-1.7: New regression test to check if the ca...
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Thu Mar 18 11:43:11 PDT 2010
changeset 6bd87ceec77a in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=6bd87ceec77a
author: Andrew John Hughes <ahughes at redhat.com>
date: Thu Mar 18 18:43:01 2010 +0000
New regression test to check if the cacerts keytool database is
configured and created properly and if SSL is really working.
2010-03-18 Pavel Tisnovsky <ptisnovs at redhat.com>
* patches/icedtea-jtreg-httpTest.patch: new regression test
to check if the cacerts keytool database is configured and
created properly and if SSL is really working.
diffstat:
3 files changed, 45 insertions(+), 1 deletion(-)
ChangeLog | 6 +++++
Makefile.am | 3 +-
patches/icedtea-jtreg-httpTest.patch | 37 ++++++++++++++++++++++++++++++++++
diffs (67 lines):
diff -r 14faa83266a3 -r 6bd87ceec77a ChangeLog
--- a/ChangeLog Thu Mar 11 12:20:10 2010 +0000
+++ b/ChangeLog Thu Mar 18 18:43:01 2010 +0000
@@ -1,3 +1,9 @@ 2010-03-11 Gary Benson <gbenson at redhat
+2010-03-18 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * patches/icedtea-jtreg-httpTest.patch: new regression test
+ to check if the cacerts keytool database is configured and
+ created properly and if SSL is really working.
+
2010-03-11 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp
diff -r 14faa83266a3 -r 6bd87ceec77a Makefile.am
--- a/Makefile.am Thu Mar 11 12:20:10 2010 +0000
+++ b/Makefile.am Thu Mar 18 18:43:01 2010 +0000
@@ -309,7 +309,8 @@ ICEDTEA_PATCHES = \
patches/icedtea-linux-separate-debuginfo.patch \
patches/icedtea-parisc.patch \
patches/icedtea-sh4-support.patch \
- patches/libpng.patch
+ patches/libpng.patch \
+ patches/icedtea-jtreg-httpTest.patch
if WITH_RHINO
ICEDTEA_PATCHES += \
diff -r 14faa83266a3 -r 6bd87ceec77a patches/icedtea-jtreg-httpTest.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-jtreg-httpTest.patch Thu Mar 18 18:43:01 2010 +0000
@@ -0,0 +1,37 @@
+--- /dev/null 2010-03-18 17:24:04.000000000 +0100
++++ openjdk/jdk/test/java/net/URL/TestHttps.java 2010-03-18 17:24:04.000000000 +0100
+@@ -0,0 +1,34 @@
++/*
++ * Copyright 2010 Red Hat, Inc. All Rights Reserved.
++ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++ *
++ * This code is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License version 2 only, as
++ * published by the Free Software Foundation.
++ *
++ * This code is distributed in the hope that it will be useful, but WITHOUT
++ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++ * version 2 for more details (a copy is included in the LICENSE file that
++ * accompanied this code).
++ *
++ * You should have received a copy of the GNU General Public License version
++ * 2 along with this work; if not, write to the Free Software Foundation,
++ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++ */
++
++
++/* @test
++ * @summary This test check if the cacerts keytool database is configured properly and SSL is really working. The test should not fail if SSL is working.
++ */
++
++import java.io.IOException;
++
++import java.net.URL;
++import java.net.URLConnection;
++
++public class TestHttps {
++ public static void main(String[] args) throws IOException {
++ new URL("https://www.verisign.com/").openConnection().connect();
++ }
++}
More information about the distro-pkg-dev
mailing list