OLD | NEW |
1 #!/usr/bin/env dart | 1 #!/usr/bin/env dart |
2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3 // for details. All rights reserved. Use of this source code is governed by a | 3 // for details. All rights reserved. Use of this source code is governed by a |
4 // BSD-style license that can be found in the LICENSE file. | 4 // BSD-style license that can be found in the LICENSE file. |
5 | 5 |
6 library BenchmarkTests; | 6 library BenchmarkTests; |
| 7 import 'dart:io'; |
7 import 'dart:math' as Math; | 8 import 'dart:math' as Math; |
8 import '../../../lib/utf/utf.dart' as SE; | 9 import '../../../lib/utf/utf.dart' as SE; |
9 part 'benchmark_runner.dart'; | 10 part 'benchmark_runner.dart'; |
10 | 11 |
11 void main() { | 12 void main() { |
12 | 13 |
13 final List<int> testEnglishUtf8 = const<int> [ | 14 final List<int> testEnglishUtf8 = const<int> [ |
14 0x54, 0x68, 0x65, 0x20, 0x71, 0x75, 0x69, 0x63, | 15 0x54, 0x68, 0x65, 0x20, 0x71, 0x75, 0x69, 0x63, |
15 0x6b, 0x20, 0x62, 0x72, 0x6f, 0x77, 0x6e, 0x20, | 16 0x6b, 0x20, 0x62, 0x72, 0x6f, 0x77, 0x6e, 0x20, |
16 0x66, 0x6f, 0x78, 0x20, 0x6a, 0x75, 0x6d, 0x70, | 17 0x66, 0x6f, 0x78, 0x20, 0x6a, 0x75, 0x6d, 0x70, |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 | 117 |
117 BenchmarkRunner.runTimed("SE_EL1","string_encoding/decodeUtf8-Greek", | 118 BenchmarkRunner.runTimed("SE_EL1","string_encoding/decodeUtf8-Greek", |
118 testConfig_1sec, () => | 119 testConfig_1sec, () => |
119 (new SE.Utf8Decoder(testGreekUtf8)).decodeRest()); | 120 (new SE.Utf8Decoder(testGreekUtf8)).decodeRest()); |
120 | 121 |
121 BenchmarkRunner.runTimed("SE_JA1","string_encoding/decodeUtf8-Katakana", | 122 BenchmarkRunner.runTimed("SE_JA1","string_encoding/decodeUtf8-Katakana", |
122 testConfig_1sec, () => | 123 testConfig_1sec, () => |
123 (new SE.Utf8Decoder(testKatakanaUtf8)).decodeRest()); | 124 (new SE.Utf8Decoder(testKatakanaUtf8)).decodeRest()); |
124 } | 125 } |
125 | 126 |
OLD | NEW |