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
0975af43
Commit
0975af43
authored
8 years ago
by
Nicolas Voirol
Browse files
Options
Downloads
Patches
Plain Diff
Removed TIP benchmark
parent
fcaa876f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/it/resources/tip-benchmarks
+0
-1
0 additions, 1 deletion
src/it/resources/tip-benchmarks
src/it/scala/inox/tip/TIPTestSuite.scala
+0
-36
0 additions, 36 deletions
src/it/scala/inox/tip/TIPTestSuite.scala
with
0 additions
and
37 deletions
tip-benchmarks
@
62018050
Compare
62018050
...
62018050
Subproject commit 62018050351c99844b416b3ad59c12045227f6f5
This diff is collapsed.
Click to expand it.
src/it/scala/inox/tip/TIPTestSuite.scala
deleted
100644 → 0
+
0
−
36
View file @
fcaa876f
/* Copyright 2009-2016 EPFL, Lausanne */
package
inox
package
tip
import
org.scalatest._
import
solvers._
import
utils._
class
TIPTestSuite
extends
FunSuite
with
ResourceUtils
{
val
tipDir
=
"tip-benchmarks/benchmarks"
def
makeTests
(
base
:
String
)
=
{
val
files
=
resourceFiles
(
s
"$tipDir/$base"
)
if
(
files
.
isEmpty
)
{
ignore
(
s
"tip-benchmarks: $base directory not found (missing git submodule?"
)
{}
}
else
{
val
baseFile
=
new
java
.
io
.
File
(
getClass
.
getResource
(
s
"/$tipDir"
).
getPath
)
for
(
file
<-
files
)
{
val
path
=
baseFile
.
toURI
.
relativize
(
file
.
toURI
).
getPath
test
(
s
"Parsing tip-benchmarks/$path"
)
{
parsers
.
TIPParser
.
parse
(
file
)
}
}
}
}
makeTests
(
"grammars"
)
makeTests
(
"isaplanner"
)
makeTests
(
"prod"
)
makeTests
(
"tip2015"
)
}
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