Skip to content

Commit ef36f1b

Browse files
feli-citascommit-bot@chromium.org
authored andcommitted
[vm/fuzzer] Reduce limit on methods and classes
Rationale: Due to recent performance degradation, we reduce the limit on emitted methods and classes back to its old value. Change-Id: Icd3c6bb65a380ded5b0a72b2a569c47d1d67e5c6 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/114749 Reviewed-by: Aart Bik <[email protected]> Reviewed-by: Ben Konyi <[email protected]> Commit-Queue: Felicitas Hetzelt <[email protected]>
1 parent 7b17602 commit ef36f1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/tools/dartfuzz/dartfuzz.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import 'dartfuzz_values.dart';
1313
// Version of DartFuzz. Increase this each time changes are made
1414
// to preserve the property that a given version of DartFuzz yields
1515
// the same fuzzed program for a deterministic random seed.
16-
const String version = '1.24';
16+
const String version = '1.25';
1717

1818
// Restriction on statements and expressions.
1919
const int stmtLength = 2;
@@ -1175,7 +1175,7 @@ class DartFuzz {
11751175

11761176
List<List<DartType>> fillTypes2({bool isFfi = false}) {
11771177
final list = <List<DartType>>[];
1178-
for (int i = 0, n = 1 + rand.nextInt(8); i < n; i++) {
1178+
for (int i = 0, n = 1 + rand.nextInt(4); i < n; i++) {
11791179
list.add(fillTypes1(isFfi: isFfi));
11801180
}
11811181
return list;

0 commit comments

Comments
 (0)