8060103: CheckBlacklistedCerts.java thinks its openjdk build
authorrhalade
Thu, 18 Jun 2015 11:16:01 +0800
changeset 31184 1ed0333a7723
parent 31183 eb0ffbecb4ba
child 31185 d3d7f5a45a5c
8060103: CheckBlacklistedCerts.java thinks its openjdk build Reviewed-by: weijun
jdk/test/lib/security/CheckBlacklistedCerts.java
--- a/jdk/test/lib/security/CheckBlacklistedCerts.java	Thu Nov 20 17:52:18 2014 +0800
+++ b/jdk/test/lib/security/CheckBlacklistedCerts.java	Thu Jun 18 11:16:01 2015 +0800
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2015, Oracle and/or its affiliates. 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
@@ -69,7 +69,9 @@
         };
 
         // Is this an OPENJDK build?
-        if (!new File(home, "lib/security/local_policy.jar").exists()) {
+        String prop = System.getProperty("java.runtime.name");
+        if (prop != null && prop.startsWith("OpenJDK")) {
+            System.out.println("This is a OpenJDK build.");
             blacklists = Arrays.copyOf(blacklists, 1);
         }