summaryrefslogblamecommitdiff
path: root/test/files/run/settings-parse.scala
blob: 8d83caf68fc6f99bc86182cb98ad4189944c9cc7 (plain) (tree)
1
2
3
4
5
6
7

                                


                        

                                                                                         




















                                                                                              
import scala.language.postfixOps
import scala.tools.nsc._

object Test {
  val tokens        = "" :: "-deprecation" :: "foo.scala" :: Nil
  val permutations0 = tokens.toSet.subsets.flatMap(_.toList.permutations).toList.distinct

  def runWithCp(cp: String) = {
    val permutations = permutations0 flatMap ("-cp CPTOKEN" :: _ permutations)

    for ((p, i) <- permutations.distinct.sortBy(_ mkString "").zipWithIndex) {
      val args           = p flatMap (_ split "\\s+") map (x => if (x == "CPTOKEN") cp else x)
      val s              = new settings.MutableSettings(println)
      val (ok, residual) = s.processArguments(args, processAll = true)

      val expected = args filter (_ == "foo.scala")
      assert(residual == expected, residual)
      assert(ok, args)
      println(s"$i) $args ==> $s")
    }
  }

  def main(args0: Array[String]): Unit = {
    runWithCp("")
    runWithCp("/tmp:/bippy")
  }
}