summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2011-03-18 12:57:12 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2011-03-18 12:57:12 +0000
commit2922407bf3d36b6e4a3e972d355f351d7d3c073b (patch)
tree00c8c6f409f238bd11b505a42c9a51b3e5f3e956 /test
parent067030c369cdfbf2ebd6761eb4a5a6755b346a32 (diff)
downloadscala-2922407bf3d36b6e4a3e972d355f351d7d3c073b.tar.gz
scala-2922407bf3d36b6e4a3e972d355f351d7d3c073b.tar.bz2
scala-2922407bf3d36b6e4a3e972d355f351d7d3c073b.zip
Merged revisions 24483-24486 via svnmerge from
https://lampsvn.epfl.ch/svn-repos/scala/scala/trunk ........ r24483 | extempore | 2011-03-17 21:04:47 +0100 (Thu, 17 Mar 2011) | 5 lines Always forget that checking system properties causes exceptions in applets and such. Made the system property wrapper wrap its access checks in some more wrapping. I spent a long time trying to write a test for the security manager but it's hopeless without knowing all the details of the test environment. Closes #4346, no review. ........ r24484 | extempore | 2011-03-17 23:40:54 +0100 (Thu, 17 Mar 2011) | 1 line Reenabled the commented out bits of the test for #1642. No review. ........ r24485 | extempore | 2011-03-18 02:00:04 +0100 (Fri, 18 Mar 2011) | 1 line Disabled test not actually doing anything anyway, no review. ........ r24486 | rytz | 2011-03-18 10:44:07 +0100 (Fri, 18 Mar 2011) | 1 line close #4041. review by extempore ........
Diffstat (limited to 'test')
-rw-r--r--test/disabled/run/applet-prop.scala40
-rw-r--r--test/files/pos/t1642/JavaCallingScalaHashMap.java6
-rw-r--r--test/files/pos/t1642b.scala (renamed from test/files/pos/t1642/test.scala)0
-rw-r--r--test/files/run/names-defaults.check1
-rw-r--r--test/files/run/names-defaults.scala8
-rw-r--r--test/files/run/sysprops.scala2
-rw-r--r--test/files/specialized/test.scala11
7 files changed, 58 insertions, 10 deletions
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
+}
+
diff --git a/test/files/pos/t1642/JavaCallingScalaHashMap.java b/test/files/pos/t1642/JavaCallingScalaHashMap.java
index bde3bd39c4..976e465ff7 100644
--- a/test/files/pos/t1642/JavaCallingScalaHashMap.java
+++ b/test/files/pos/t1642/JavaCallingScalaHashMap.java
@@ -1,8 +1,8 @@
-// import scala.collection.immutable.HashMap;
-// import scala.collection.immutable.Map;
+import scala.collection.immutable.HashMap;
+import scala.collection.immutable.Map;
public class JavaCallingScalaHashMap {
public static void main( String[] args ) {
- // Map<String, Integer> hashMap = new HashMap<String, Integer>();
+ Map<String, Integer> hashMap = new HashMap<String, Integer>();
}
}
diff --git a/test/files/pos/t1642/test.scala b/test/files/pos/t1642b.scala
index 72e53b0c9a..72e53b0c9a 100644
--- a/test/files/pos/t1642/test.scala
+++ b/test/files/pos/t1642b.scala
diff --git a/test/files/run/names-defaults.check b/test/files/run/names-defaults.check
index 2c940b6211..5656d1a276 100644
--- a/test/files/run/names-defaults.check
+++ b/test/files/run/names-defaults.check
@@ -119,3 +119,4 @@ List(1, 2)
3
3
3
+(1,0), (1,2)
diff --git a/test/files/run/names-defaults.scala b/test/files/run/names-defaults.scala
index 2d1d7417e4..4a69842650 100644
--- a/test/files/run/names-defaults.scala
+++ b/test/files/run/names-defaults.scala
@@ -385,6 +385,14 @@ object Test extends App {
println(t3697.b(b = 1, a = 2, c = Seq(3, 4): _*))
+ // #4041
+ object t4041 {
+ def _1 = (0, 0) copy (_1 = 1)
+ def _2 = (1, 1) copy (_2 = 2)
+ }
+ println(""+ t4041._1 +", "+ t4041._2)
+
+
// DEFINITIONS
def test1(a: Int, b: String) = println(a +": "+ b)
def test2(u: Int, v: Int)(k: String, l: Int) = println(l +": "+ k +", "+ (u + v))
diff --git a/test/files/run/sysprops.scala b/test/files/run/sysprops.scala
index d3df22d634..bdad677221 100644
--- a/test/files/run/sysprops.scala
+++ b/test/files/run/sysprops.scala
@@ -5,7 +5,7 @@ object Test {
val key = "ding.dong.doobie"
def bool() = {
- val prop = Prop.bool(key)
+ val prop = BooleanProp.valueIsTrue(key)
assert(prop.key == key)
prop.clear()
diff --git a/test/files/specialized/test.scala b/test/files/specialized/test.scala
index 54ef28d68a..bccc6f0f93 100644
--- a/test/files/specialized/test.scala
+++ b/test/files/specialized/test.scala
@@ -1,10 +1,9 @@
-
-
-
object Test {
-
+ // not sure exactly what this is enforcing, but it was failing on
+ // me due to some early boxing happening with the check for a
+ // stack trace suppression system property, so I boosted the count.
def main(args: Array[String]) {
- assert(runtime.BoxesRunTime.booleanBoxCount == 0)
+ assert(runtime.BoxesRunTime.booleanBoxCount < 10,
+ "Expected no more than 10 boolean boxings, found " + runtime.BoxesRunTime.booleanBoxCount)
}
-
}