diff --git a/src/test/scala/leon/test/synthesis/RuleApplicationSuite.scala b/src/test/scala/leon/test/synthesis/RuleApplicationSuite.scala index fa1305579b78742c870cdf41f4fd3a773f1c4633..91ea7f8d3134fa1680de52baf2269f5c3795e13b 100644 --- a/src/test/scala/leon/test/synthesis/RuleApplicationSuite.scala +++ b/src/test/scala/leon/test/synthesis/RuleApplicationSuite.scala @@ -77,28 +77,28 @@ class SynthesisSuite extends FunSuite { fullName } - test("Synthesizing %3d: [%s]".format(nextInt(), displayName)) { - assert(file.exists && file.isFile && file.canRead, - "Benchmark [%s] is not a readable file".format(displayName)) + assert(file.exists && file.isFile && file.canRead, + "Benchmark [%s] is not a readable file".format(displayName)) - val ctx = LeonContext( - settings = Settings( - synthesis = true, - xlang = false, - verify = false - ), - files = List(file), - reporter = new SilentReporter - ) + val ctx = LeonContext( + settings = Settings( + synthesis = true, + xlang = false, + verify = false + ), + files = List(file), + reporter = new SilentReporter + ) - val opts = SynthesizerOptions() + val opts = SynthesizerOptions() - val pipeline = leon.plugin.ExtractionPhase andThen ExtractProblemsPhase + val pipeline = leon.plugin.ExtractionPhase andThen ExtractProblemsPhase - val (results, solver) = pipeline.run(ctx)(file.getPath :: Nil) + val (results, solver) = pipeline.run(ctx)(file.getPath :: Nil) - for ((f, ps) <- results; p <- ps) { + for ((f, ps) <- results; p <- ps) { + test("Synthesizing %3d: %-20s [%s]".format(nextInt(), f.id.toString, displayName)) { block(solver, f, p) } }