Bug 401098 - Inner jars are not signed in CBI based build (workaround)
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 69c46c0..f7758ee 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 @@
 	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);
 		}