summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-18 01:00:04 +0000
committerPaul Phillips <paulp@improving.org>2011-03-18 01:00:04 +0000
commitb3c85819bf5240f72ae7e914d64639f31a40d96a (patch)
tree2275be650fe63e58879bbc8d827abb76be15b3b0 /test/files
parentebcec5f4d657afb3dbde33128d021ec760cb528b (diff)
downloadscala-b3c85819bf5240f72ae7e914d64639f31a40d96a.tar.gz
scala-b3c85819bf5240f72ae7e914d64639f31a40d96a.tar.bz2
scala-b3c85819bf5240f72ae7e914d64639f31a40d96a.zip
Disabled test not actually doing anything anywa...
Disabled test not actually doing anything anyway, no review.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/applet-prop.scala40
1 files changed, 0 insertions, 40 deletions
diff --git a/test/files/run/applet-prop.scala b/test/files/run/applet-prop.scala
deleted file mode 100644
index fb112bf7d5..0000000000
--- a/test/files/run/applet-prop.scala
+++ /dev/null
@@ -1,40 +0,0 @@
-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
-}
-