Skip to content

Commit

Permalink
Returned limit to 100. Much better naming.
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Jun 7, 2024
1 parent a394607 commit d8e593e
Show file tree
Hide file tree
Showing 2 changed files with 149 additions and 1,042 deletions.
2 changes: 1 addition & 1 deletion system/jcstress/Generate.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class Generate {

// longest generated classes have 2131 tests
private static final int LIMIT = Integer.parseInt(System.getenv("LIMIT") == null ? "10" : System.getenv("LIMIT"));
private static final int LIMIT = Integer.parseInt(System.getenv("LIMIT") == null ? "100" : System.getenv("LIMIT"));
private static final boolean smallGroups = true;
//those namespaces can match more than just themselves, so can not be "nicely" merged (but will be gathered in small.groups if possible)
private static final String[] NOT_MERGE_ABLE_GROUPS =
Expand Down
Loading

0 comments on commit d8e593e

Please sign in to comment.