From 04e2dbb29830d0e511cdfa8c132a9fad91d657ed Mon Sep 17 00:00:00 2001 From: Eugene Burmako Date: Wed, 23 Oct 2013 01:30:23 +0200 Subject: temporarily disables run/reflection-sync-subtypes This test has been a source of spurious failures as in, for example https://github.com/scala/scala/pull/3029#issuecomment-26811129, so I'm disabling it for the time being while I investigate the issue. --- test/files/run/reflection-sync-subtypes.check | 0 test/files/run/reflection-sync-subtypes.scala | 20 -------------------- 2 files changed, 20 deletions(-) delete mode 100644 test/files/run/reflection-sync-subtypes.check delete mode 100644 test/files/run/reflection-sync-subtypes.scala (limited to 'test/files/run') diff --git a/test/files/run/reflection-sync-subtypes.check b/test/files/run/reflection-sync-subtypes.check deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/test/files/run/reflection-sync-subtypes.scala b/test/files/run/reflection-sync-subtypes.scala deleted file mode 100644 index 7f75a464ac..0000000000 --- a/test/files/run/reflection-sync-subtypes.scala +++ /dev/null @@ -1,20 +0,0 @@ -import scala.reflect.runtime.universe._ - -object Test extends App { - val n = 1000 - val rng = new scala.util.Random() - val tasks = List( - () => typeOf[List[Int]] <:< typeOf[List[T] forSome { type T }], - () => typeOf[List[T] forSome { type T }] <:< typeOf[List[Any]], - () => typeOf[Map[Int, Object]] <:< typeOf[Iterable[(Int, String)]], - () => typeOf[Expr[Any] { val mirror: rootMirror.type }] <:< typeOf[Expr[List[List[List[Int]]]]{ val mirror: rootMirror.type }]) - val perms = tasks.permutations.toList - 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 result = perms(diceRolls(i - 1)).map(_()) - assert(result.sorted == List(false, false, true, true)) - } - }) - threads foreach (_.start) -} \ No newline at end of file -- cgit v1.2.3