Commit f7d81007 authored by Adam Barth's avatar Adam Barth

Don't run these benchmarks forever by default

Running forever is useful for profiling but makes these scripts less useful for
measurement.  :)
parent f0ebc2b0
......@@ -7,7 +7,7 @@ import 'package:stocks/stock_data.dart' as stock_data;
import '../../test/widget/widget_tester.dart';
const int _kNumberOfIterations = 50000;
const bool _kRunForever = true;
const bool _kRunForever = false;
void main() {
assert(false); // Don't run in checked mode
......
......@@ -7,7 +7,7 @@ import 'package:stocks/stock_data.dart' as stock_data;
import '../../test/widget/widget_tester.dart';
const int _kNumberOfIterations = 100000;
const bool _kRunForever = true;
const bool _kRunForever = false;
void _doNothing() { }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment