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
4dc34574
Commit
4dc34574
authored
10 years ago
by
Etienne Kneuss
Browse files
Options
Downloads
Patches
Plain Diff
Fix ordering bug, fix test options
parent
ad33512e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build.sbt
+4
-4
4 additions, 4 deletions
build.sbt
src/main/scala/leon/utils/Positions.scala
+7
-1
7 additions, 1 deletion
src/main/scala/leon/utils/Positions.scala
with
11 additions
and
5 deletions
build.sbt
+
4
−
4
View file @
4dc34574
...
...
@@ -30,13 +30,13 @@ libraryDependencies ++= Seq(
Keys
.
fork
in
run
:=
true
Keys
.
fork
in
t
est
:=
true
Keys
.
fork
in
T
est
:=
true
logBuffered
in
t
est
:=
false
logBuffered
in
T
est
:=
false
testOptions
in
t
est
+=
Tests
.
Argument
(
"-oD"
)
testOptions
in
T
est
+=
Tests
.
Argument
(
"-oD
F
"
)
javaOptions
in
t
est
+=
"-Xss32M"
javaOptions
in
T
est
+=
"-Xss32M"
parallelExecution
in
test
:=
false
...
...
This diff is collapsed.
Click to expand it.
src/main/scala/leon/utils/Positions.scala
+
7
−
1
View file @
4dc34574
...
...
@@ -19,7 +19,13 @@ abstract class Position extends Ordered[Position] {
ld
}
}
else
{
0
if
(
this
.
file
eq
null
)
{
-
1
}
else
if
(
that
.
file
eq
null
)
{
+
1
}
else
{
this
.
file
.
getPath
.
compare
(
that
.
file
.
getPath
)
}
}
}
...
...
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