Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LARA
inox
Commits
f6f822bb
Commit
f6f822bb
authored
10 years ago
by
Etienne Kneuss
Browse files
Options
Downloads
Patches
Plain Diff
test runs the LeonAllTests suite, which is now ordered
parent
eef155f6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build.sbt
+3
-3
3 additions, 3 deletions
build.sbt
src/test/scala/leon/test/LeonTests.scala
+61
-0
61 additions, 0 deletions
src/test/scala/leon/test/LeonTests.scala
with
64 additions
and
3 deletions
build.sbt
+
3
−
3
View file @
f6f822bb
...
...
@@ -35,10 +35,10 @@ Keys.fork in Test := true
logBuffered
in
Test
:=
false
testOptions
in
Test
+=
Tests
.
Argument
(
"-oDF"
)
javaOptions
in
Test
++=
Seq
(
"-Xss32M"
,
"-Xmx4G"
,
"-XX:MaxPermSize=128M"
)
parallelExecution
in
test
:=
false
parallelExecution
in
Test
:=
false
testOptions
in
Test
:=
Seq
(
Tests
.
Filter
(
s
=>
s
.
endsWith
(
"LeonAllTests"
)),
Tests
.
Argument
(
"-oDF"
))
sourcesInBase
in
Compile
:=
false
This diff is collapsed.
Click to expand it.
src/test/scala/leon/test/LeonTests.scala
0 → 100644
+
61
−
0
View file @
f6f822bb
/* Copyright 2009-2014 EPFL, Lausanne */
package
leon.test
import
org.scalatest.Suites
import
evaluators._
import
codegen._
import
frontends._
import
purescala._
import
solvers._
import
repair._
import
synthesis._
import
termination._
import
utils._
import
verification._
class
LeonAllTests
extends
Suites
(
new
LeonUnitTests
,
new
LeonFunTests
)
class
LeonFunTests
extends
Suites
(
new
FrontEndsTest
,
new
RepairSuite
,
new
TerminationRegression
,
new
StablePrintingSuite
,
new
SynthesisSuite
,
new
SynthesisRegressionSuite
,
new
LibraryVerificationRegression
,
new
PureScalaVerificationRegression
,
new
XLangVerificationRegression
)
class
LeonUnitTests
extends
Suites
(
new
CodeGenTests
,
new
ImportsTests
,
new
Streams
,
new
DefOpsTests
,
new
LikelyEqSuite
,
new
TransformationTests
,
new
TreeNormalizationsTests
,
new
TreeOpsTests
,
new
TreeTests
,
new
EnumerationSolverTests
,
new
TimeoutSolverTests
,
new
UnrollingSolverTests
,
new
AlgebraSuite
,
new
LinearEquationsSuite
,
new
DefaultEvaluatorTests
,
new
EvaluatorsTests
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment