src/main/java/org/apache/flink/scheduler/benchmark/SchedulerBenchmarkExecutorBase.java [50:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void runBenchmark(Class<?> clazz) throws RunnerException {
        Options options =
                new OptionsBuilder()
                        .verbosity(VerboseMode.NORMAL)
                        .include(".*" + clazz.getCanonicalName() + ".*")
                        .build();

        new Runner(options).run();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/flink/state/benchmark/RescalingBenchmarkBase.java [59:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void runBenchmark(Class<?> clazz) throws RunnerException {
        Options options =
                new OptionsBuilder()
                        .verbosity(VerboseMode.NORMAL)
                        .include(".*" + clazz.getCanonicalName() + ".*")
                        .build();

        new Runner(options).run();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



