diff options
| author | Thomas Watson | 2013-02-18 19:02:23 +0000 |
|---|---|---|
| committer | Thomas Watson | 2013-02-18 19:02:51 +0000 |
| commit | 2bf140c910f5fd4651fcfc798610b7da950d1e51 (patch) | |
| tree | 9d4489a4c0388f47913a4c45ea7a925837100bfe | |
| parent | b22f25b711d260fe88c83d320dde89a9f56db7d6 (diff) | |
| download | rt.equinox.framework-2bf140c910f5fd4651fcfc798610b7da950d1e51.tar.gz rt.equinox.framework-2bf140c910f5fd4651fcfc798610b7da950d1e51.tar.xz rt.equinox.framework-2bf140c910f5fd4651fcfc798610b7da950d1e51.zip | |
Bug 401098 - Inner jars are not signed in CBI based build (workaround)v20130218-190251I20130220-0922I20130219-1600I20130219-0800
| -rw-r--r-- | bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/security/BaseSecurityTest.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/security/BaseSecurityTest.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/security/BaseSecurityTest.java index 69c46c0e3..f7758ee31 100644 --- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/security/BaseSecurityTest.java +++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/security/BaseSecurityTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2005, 2010 IBM Corporation and others. + * Copyright (c) 2005, 2013 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -167,6 +167,8 @@ public class BaseSecurityTest extends CoreTest { protected static void setAuthorizationEnabled(ConfigurationSessionTestSuite suite) { try { suite.getSetup().setSystemProperty("osgi.signedcontent.support", "all"); //$NON-NLS-1$//$NON-NLS-2$ + // TODO work around to tolerate the registry compatiblity inner jar not being signed (bug 401098) + suite.getSetup().setSystemProperty("osgi.support.class.certificate", "false"); //$NON-NLS-1$//$NON-NLS-2$ } catch (Exception e) { throw new RuntimeException(e); } |
