Skip to content
Snippets Groups Projects
Commit 4dc34574 authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Fix ordering bug, fix test options

parent ad33512e
No related branches found
No related tags found
No related merge requests found
......@@ -30,13 +30,13 @@ libraryDependencies ++= Seq(
Keys.fork in run := true
Keys.fork in test := true
Keys.fork in Test := true
logBuffered in test := false
logBuffered in Test := false
testOptions in test += Tests.Argument("-oD")
testOptions in Test += Tests.Argument("-oDF")
javaOptions in test += "-Xss32M"
javaOptions in Test += "-Xss32M"
parallelExecution in test := false
......
......@@ -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)
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment