-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run sample benchmarks on CI #622
Conversation
def textDocument: Semanticdb.TextDocument = { | ||
textDocuments.getDocuments(0) | ||
def textDocument: Option[Semanticdb.TextDocument] = { | ||
Option.when(textDocuments.getDocumentsCount() > 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was previously crashing, likely terminating the benchmark prematurely.
[info] <failure>
[info] java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
[info] at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64)
[info] at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70)
[info] at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:248)
[info] at java.base/java.util.Objects.checkIndex(Objects.java:372)
[info] at java.base/java.util.ArrayList.get(ArrayList.java:459)
[info] at java.base/java.util.Collections$UnmodifiableList.get(Collections.java:1310)
[info] at com.sourcegraph.semanticdb_javac.Semanticdb$TextDocuments.getDocuments(Semanticdb.java:669)
[info] at tests.CompileResult.textDocument(CompileResult.scala:12)
[info] at benchmarks.CompileBench.$anonfun$compileSemanticdb$1(CompileBench.scala:65)
[info] at benchmarks.CompileBench.$anonfun$compileSemanticdb$1$adapted(CompileBench.scala:64)
[info] at benchmarks.CompileBench$.$anonfun$foreachSource$2(CompileBench.scala:94
[info] at benchmarks.CompileBench$.$anonfun$foreachSource$2$adapted(CompileBench.scala:82)
[info] at scala.meta.internal.io.PlatformFileIO$.withJarFileSystem(PlatformFileIO.scala:80)
[info] at scala.meta.internal.io.FileIO$.withJarFileSystem(FileIO.scala:44)
[info] at benchmarks.CompileBench$.$anonfun$foreachSource$1(CompileBench.scala:82
[info] at benchmarks.CompileBench$.$anonfun$foreachSource$1$adapted(CompileBench.scala:80)
[info] at scala.collection.immutable.List.foreach(List.scala:333)
[info] at benchmarks.CompileBench$.foreachSource(CompileBench.scala:80)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought I'd check which dependency causes this:
[info] ArraySeq(edu/umd/cs/findbugs/annotations/When.java, edu/umd/cs/findbugs/annotations/UnknownNullness.java, edu/umd/cs/findbugs/annotations/SuppressWarnings.java, edu/umd/cs/findbugs/annotations/SuppressFBWarnings.java, edu/umd/cs/findbugs/annotations/ReturnValuesAreNonnullByDefault.java, edu/umd/cs/findbugs/annotations/Priority.java, edu/umd/cs/findbugs/annotations/PossiblyNull.java, edu/umd/cs/findbugs/annotations/package-info.java, edu/umd/cs/findbugs/annotations/OverrideMustInvoke.java, edu/umd/cs/findbugs/annotations/Nullable.java, edu/umd/cs/findbugs/annotations/NoWarning.java, edu/umd/cs/findbugs/annotations/NonNull.java, edu/umd/cs/findbugs/annotations/ExpectWarning.java, edu/umd/cs/findbugs/annotations/DischargesObligation.java, edu/umd/cs/findbugs/annotations/DesireWarning.java, edu/umd/cs/findbugs/annotations/DesireNoWarning.java, edu/umd/cs/findbugs/annotations/DefaultAnnotationForParameters.java, edu/umd/cs/findbugs/annotations/DefaultAnnotationForMethods.java, edu/umd/cs/findbugs/annotations/DefaultAnnotationForFields.java, edu/umd/cs/findbugs/annotations/DefaultAnnotation.java, edu/umd/cs/findbugs/annotations/CreatesObligation.java, edu/umd/cs/findbugs/annotations/Confidence.java, edu/umd/cs/findbugs/annotations/CleanupObligation.java, edu/umd/cs/findbugs/annotations/CheckReturnValue.java, edu/umd/cs/findbugs/annotations/CheckForNull.java) returned an empty textDocument
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh wait, is this a different dependency...
tests/benchmarks/src/main/scala/benchmarks/ScipSemanticdbBench.scala
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a great improvement. It probably makes sense to remove the LSIF-related benchmarks since I don't expect we will need to revisit those code paths in the future.
Additionally, fix benchmarks which used to fail immediately.
This is the full set that was supposed to be running:
Test plan
CI is my test plan.