Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@
@Fork(1)
public class GroupedTopNBenchmark {

static {
Utils.configureBenchmarkLogging();
}

private static final BlockFactory blockFactory = BlockFactory.builder(BigArrays.NON_RECYCLING_INSTANCE)
.breaker(new NoopCircuitBreaker("none"))
.build();
Expand All @@ -73,7 +77,6 @@ public class GroupedTopNBenchmark {
private static final String AND = "_and_";

static {
Utils.configureBenchmarkLogging();
// Smoke test all the expected values and force loading subclasses more like prod
selfTest();
}
Expand Down
Loading