From d4d5afe66456065f1d2d773935256a69b9d22060 Mon Sep 17 00:00:00 2001 From: bgopularam Date: Thu, 22 Jun 2017 01:33:27 -0700 Subject: [PATCH] 8181975: Run sun/security/pkcs11 tests on Mac Summary: updated path for nss-libs for MacOSX platform Reviewed-by: coffeys --- test/sun/security/pkcs11/PKCS11Test.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/sun/security/pkcs11/PKCS11Test.java b/test/sun/security/pkcs11/PKCS11Test.java index 9155c83b7..ee2ace669 100644 --- a/test/sun/security/pkcs11/PKCS11Test.java +++ b/test/sun/security/pkcs11/PKCS11Test.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2017, 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 @@ -509,6 +509,8 @@ public abstract class PKCS11Test { PKCS11_BASE + "/nss/lib/windows-i586/".replace('/', SEP)}); osMap.put("Windows-amd64-64", new String[]{ PKCS11_BASE + "/nss/lib/windows-amd64/".replace('/', SEP)}); + osMap.put("MacOSX-x86_64-64", new String[]{ + PKCS11_BASE + "/nss/lib/macosx-x86_64/"}); } private final static char[] hexDigits = "0123456789abcdef".toCharArray(); -- GitLab