Skip to content
Snippets Groups Projects
Commit 8fd776e6 authored by Manos Koukoutos's avatar Manos Koukoutos Committed by Etienne Kneuss
Browse files

Make DefOpsTests silent, like the rest

parent de4f7d74
No related branches found
No related tags found
No related merge requests found
...@@ -10,19 +10,16 @@ import frontends.scalac._ ...@@ -10,19 +10,16 @@ import frontends.scalac._
import utils._ import utils._
import leon.test.LeonTestSuite import leon.test.LeonTestSuite
private [purescala] object DefOpsHelper { private [purescala] object DefOpsHelper extends LeonTestSuite {
private def parseStrings(strs : List[String]) : Program = { private def parseStrings(strs : List[String]) : Program = {
val settings : Settings = Settings( val settings : Settings = Settings(
verify = false verify = false
) )
val reporter = new DefaultReporter(settings) val c = createLeonContext()
val context : LeonContext = LeonContext( val context : LeonContext = c.copy(settings =
reporter, c.settings.copy(verify = false)
new InterruptManager(reporter),
settings,
Seq()
) )
val pipeline = val pipeline =
ExtractionPhase andThen ExtractionPhase andThen
PreprocessingPhase PreprocessingPhase
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment