summaryrefslogtreecommitdiff
path: root/test/files/run/t4929.scala
blob: 3208cd1b0919b8e19387517a7346741ce092a3bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import scala.util.parsing.json._
import java.util.concurrent._
import collection.JavaConversions._

object Test extends App {

  val LIMIT = 2000
  val THREAD_COUNT = 20
  val count = new java.util.concurrent.atomic.AtomicInteger(0)

  val begin = new CountDownLatch(THREAD_COUNT)
  val finish = new CountDownLatch(THREAD_COUNT)

  val errors = new ConcurrentLinkedQueue[Throwable]

  (1 to THREAD_COUNT) foreach { i =>
    val thread = new Thread {
      override def run() {
        begin.await(1, TimeUnit.SECONDS)
        try {
          while (count.getAndIncrement() < LIMIT && errors.isEmpty) {
            JSON.parseFull("""{"foo": [1,2,3,4]}""")
          }
        } catch {
          case t: Throwable => errors.add(t)
        }

        finish.await(10, TimeUnit.SECONDS)
      }
    }

    thread.setDaemon(true)
    thread.start()

  }


  errors foreach { throw(_) }

  println("success")

}