Skip to content
Draft
Show file tree
Hide file tree
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 @@ -176,7 +176,7 @@ void _verifyScoresAgainstThresholds(
}
}

const _frameTimeFor60FPSInMicros = 16666.6;
const _frameTimeFor60FPSInMicros = 16666.6 / 4;
// const _frameTimeFor30FPSInMicros = 33333.3;

/// Creates the expected [DevToolsBenchmark]s for the specified compiler.
Expand Down
4 changes: 2 additions & 2 deletions tool/ci/benchmark_performance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.

source ./tool/ci/setup.sh

# Fast fail the script on failures.
set -ex

source ./tool/ci/setup.sh

pushd $DEVTOOLS_DIR/packages/devtools_app
flutter test -j, --concurrency=1 benchmark/devtools_benchmarks_test.dart
popd
Loading