Mark remaining @Ignored tests with 'TODO SPR-8116'

Each of these tests began failing during the Gradle build porting
process. None seem severe, many are likely due to classpath issues.

In the case of TestNG support, this needs to be added to the Gradle
build in order to execute these tests. See SPR-8116.txt
This commit is contained in:
Chris Beams
2012-01-24 11:18:31 +01:00
parent 5ea51f42fb
commit ddf8eaf38a
15 changed files with 48 additions and 43 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2009 the original author or authors.
* Copyright 2002-2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -39,6 +39,7 @@ import javax.security.auth.AuthPermission;
import javax.security.auth.Subject;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanClassLoaderAware;
@@ -69,7 +70,6 @@ import org.springframework.core.io.Resource;
*
* @author Costin Leau
*/
@org.junit.Ignore
public class CallbacksSecurityTests {
private XmlBeanFactory beanFactory;
@@ -436,7 +436,8 @@ public class CallbacksSecurityTests {
}
@Test
public void testContainerPriviledges() throws Exception {
@Ignore // TODO SPR-8116 passes under Eclipse, but fails under Gradle with https://gist.github.com/1664133
public void testContainerPrivileges() throws Exception {
AccessControlContext acc = provider.getAccessControlContext();
AccessController.doPrivileged(new PrivilegedExceptionAction<Object>() {