summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-01-10 06:01:50 -0800
committerJason Zaugg <jzaugg@gmail.com>2014-01-10 06:01:50 -0800
commit5e65754493e87f2be80e910f6866b179eea98cca (patch)
treeab8da05118909b9f7511364cd50c3b38c1ac4c4c /test/pending
parent791ba51b53b7a5dcf2b186d8e593359182c0694f (diff)
parent1d908106cf51279291c41fea455595ab6934d984 (diff)
downloadscala-5e65754493e87f2be80e910f6866b179eea98cca.tar.gz
scala-5e65754493e87f2be80e910f6866b179eea98cca.tar.bz2
scala-5e65754493e87f2be80e910f6866b179eea98cca.zip
Merge pull request #3350 from retronym/ticket/8131
SI-8131 Move test for reflection thread safety to pending.
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/run/reflection-sync-potpourri.scala32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/pending/run/reflection-sync-potpourri.scala b/test/pending/run/reflection-sync-potpourri.scala
new file mode 100644
index 0000000000..0ad5f2ab66
--- /dev/null
+++ b/test/pending/run/reflection-sync-potpourri.scala
@@ -0,0 +1,32 @@
+import scala.reflect.runtime.universe._
+
+// this test checks that under heavily multithreaded conditions:
+// 1) scala.reflect.runtime.universe, its rootMirror and definitions are initialized correctly
+// 2) symbols are correctly materialized into PackageScopes (no dupes)
+// 3) unpickling works okay even we unpickle the same symbol a lot of times
+
+object Test extends App {
+ def foo[T: TypeTag](x: T) = typeOf[T].toString
+ val n = 1000
+ val rng = new scala.util.Random()
+ val types = List(
+ () => typeOf[java.lang.reflect.Method],
+ () => typeOf[java.lang.annotation.Annotation],
+ () => typeOf[scala.io.BufferedSource],
+ () => typeOf[scala.io.Codec])
+ val perms = types.permutations.toList
+ def force(lazytpe: () => Type): String = {
+ lazytpe().typeSymbol.typeSignature
+ lazytpe().toString
+ }
+ val diceRolls = List.fill(n)(rng.nextInt(perms.length))
+ val threads = (1 to n) map (i => new Thread(s"Reflector-$i") {
+ override def run(): Unit = {
+ val s1 = foo("42")
+ val s2 = perms(diceRolls(i - 1)).map(x => force(x)).sorted.mkString(", ")
+ assert(s1 == "java.lang.String")
+ assert(s2 == "java.lang.annotation.Annotation, java.lang.reflect.Method, scala.io.BufferedSource, scala.io.Codec")
+ }
+ })
+ threads foreach (_.start)
+} \ No newline at end of file