Commit 6e633a65 authored by Adam Barth's avatar Adam Barth

Merge pull request #292 from abarth/run_forever

Don't run these benchmarks forever by default
parents 75f2f1ab f7d81007
......@@ -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