From b3c85819bf5240f72ae7e914d64639f31a40d96a Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Fri, 18 Mar 2011 01:00:04 +0000 Subject: Disabled test not actually doing anything anywa... Disabled test not actually doing anything anyway, no review. --- test/disabled/run/applet-prop.scala | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 test/disabled/run/applet-prop.scala (limited to 'test/disabled/run') diff --git a/test/disabled/run/applet-prop.scala b/test/disabled/run/applet-prop.scala new file mode 100644 index 0000000000..fb112bf7d5 --- /dev/null +++ b/test/disabled/run/applet-prop.scala @@ -0,0 +1,40 @@ +import scala.tools.partest._ +import java.util.PropertyPermission +import java.security.AccessControlException + +class S extends javax.swing.JApplet { + scala.collection.Traversable +} + +object Test extends SecurityTest { + val s = new S + // lazy val TestKey = sys.SystemProperties.noTraceSupression.key + // def hitPerm() = new Throwable with scala.util.control.ControlThrowable { } + // + // var throwing = false + // override def propertyCheck(p: PropertyPermission): Unit = { + // if (p.getName == TestKey) { + // println("I see " + p.getName) + // if (throwing) + // throwIt(p) + // } + // } + // + // hitPerm() + // securityOn() + // hitPerm() + // + // throwing = true + // + // val caught = + // try { hitPerm() ; false } + // catch { case _: AccessControlException => true } + // + // assert(caught, "Should have incurred exception.") + // throwing = false + // hitPerm() + // + // val xs = new Traversable[Int] { def foreach[U](f: Int => U) = 1 to 3 foreach f } + // xs foreach println +} + -- cgit v1.2.3